-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1.19 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
41
42
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
with open('README.md') as f:
description = f.read()
setup(
author="Tiago Coutinho",
author_email='coutinhotiago@gmail.com',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
description="A gevent friendly serial line",
install_requires=['gevent', 'pyserial'],
extras_require={
'ser2tcp': ['pyyaml', 'toml']
},
entry_points={
'console_scripts': [
'ser2tcp=gserial.ser2tcp:main [ser2tcp]'
]
},
license="GPL",
long_description=description,
long_description_content_type='text/markdown',
keywords='pyserial, gevent',
name='gevent-serial',
packages=find_packages(),
url='https://github.com/tiagocoutinho/gserial',
version='0.2.4')