-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (40 loc) · 1.4 KB
/
Copy pathsetup.py
File metadata and controls
43 lines (40 loc) · 1.4 KB
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
41
42
43
from setuptools import setup, find_packages
import os
# ---------------------------------
# imports the version from the package
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'readme.md')) as f:
README = f.read()
exec(open(os.path.join(here, 'serialdispatch/version.py')).read())
requirements = [
'click >= 6.7',
'pyserial >= 3.4'
]
setup(
name='serialdispatch',
version=__version__,
url='https://github.com/slightlynybbled/SerialDispatch',
description='Easy serial communication using Dispatch',
long_description=README,
author='Jason R. Jones',
author_email='slightlynybbled@gmail.com',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Topic :: System :: Hardware',
'Topic :: System :: Monitoring',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
license='MIT',
packages=find_packages(),
install_requires=requirements,
entry_points={'console_scripts': ['serialdispatch = serialdispatch.__main__:main']},
zip_safe=False
)