-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
37 lines (32 loc) · 1.13 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
"""
serialenum
----------
A cross-platform serial port enumerator utility function. Use with pyserial to
automatically detect available serial ports on any system.
For more information, see the `github page <https://github.com/djs/serialenum>`_.
"""
from setuptools import setup, find_packages
setup(
name = "serialenum",
version = "0.3",
py_modules = ['serialenum'],
author = "Dan Savilonis",
author_email = "djs@n-cube.org",
url = 'https://github.com/djs/serialenum',
description = "Cross-platform serial port enumeration",
license = "BSD",
keywords = "serial serial-port",
long_description = __doc__,
zip_safe=False,
install_requires = "pyserial",
entry_points = {"console_scripts": ["serialenum = serialenum:script"]},
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)