Commit 5a9df552 authored by olivier R-D's avatar olivier R-D

move from distutils to setuptools, this fixes local install

parent 4b2b20c6
from distutils.core import setup
from distutils.command.install_data import install_data
from setuptools import setup, find_packages
import sys
......@@ -14,17 +13,11 @@ setup(name="freeopcua",
author="Olivier Roulet-Dubonnet",
author_email="olivier.roulet@gmail.com",
url='http://freeopcua.github.io/',
packages=["opcua",
"opcua.client",
"opcua.server",
"opcua.server.standard_address_space",
"opcua.common",
"opcua.crypto",
"opcua.ua"],
packages=find_packages(exclude="schemas"),
provides=["opcua"],
license="GNU Lesser General Public License v3 or later",
install_requires=install_requires,
extras_require = {
extras_require={
'encryption': ['cryptography']
},
classifiers=["Programming Language :: Python",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment