-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.1 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
36
37
38
39
40
import setuptools
with open('requirements.txt', 'r') as f:
requirements = f.read()
with open('README.md', 'r') as f:
long_description = f.read()
name = 'cp2stdout'
setuptools.setup(
name=name,
version='@@VERSION@@',
author='HARDWARIO s.r.o.',
author_email='[email protected]',
description='COOPER to stdout',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/hardwario/cp2stdout',
license='MIT',
keywords = ['cooper', 'zmq', 'iot', 'stdout'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Utilities'
],
platforms='any',
packages=setuptools.find_packages(),
install_requires=requirements,
entry_points={
'console_scripts': [
'%s=%s:main' % (name, name)
]
}
)