forked from gijzelaerr/python-snap7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (30 loc) · 1.17 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import os
from setuptools import setup, find_packages
__version__ = "0.10"
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='python-snap7',
version=__version__,
description='Python wrapper for the snap7 library',
author='Gijs Molenaar',
author_email='[email protected]',
url='https://github.com/gijzelaerr/python-snap7',
packages=find_packages(),
license='MIT licence, see LICENCE',
long_description=read('README.rst'),
scripts=['snap7/bin/snap7-server.py'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Topic :: System :: Hardware",
"Intended Audience :: Developers",
"Intended Audience :: Manufacturing",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
)