-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
44 lines (37 loc) · 1.06 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
43
44
"""A setup tools based setup module.
"""
import setuptools
setuptools.setup(
name="ser2tcp",
version="3.0",
description="Serial proxy to TCP or TELNET",
long_description=(
"Python serial port proxy to TCP or TELNET"
"Project page: https://github.com/pavelrevak/ser2tcp"),
url="https://github.com/pavelrevak/ser2tcp",
author="Pavel Revak",
author_email="[email protected]",
license="MIT",
keywords="serial tcp telnet",
classifiers=[
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Embedded Systems',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
python_requires='>3.5',
packages=[
'ser2tcp',
],
install_requires=[
'pyserial (>=3.0)'
],
entry_points={
'console_scripts': [
'ser2tcp=ser2tcp.main:main',
],
},
include_package_data=True,
)