-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
19 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,21 @@ | ||
from setuptools import setup | ||
|
||
setup(name='concord232', | ||
version='0.15', | ||
description='GE Concord 4 RS232 Serial Interface Library and Server', | ||
author='Jason Carter', | ||
author_email='jason@jason-carter.net', | ||
url='http://github.com/JasonCarter80/concord232', | ||
packages=['concord232'], | ||
install_requires=['requests', 'stevedore', 'prettytable', 'pyserial', 'flask'], | ||
scripts=['concord232_server', 'concord232_client'] | ||
) | ||
setup( | ||
name='concord232', | ||
version='0.15', | ||
description='GE Concord 4 RS232 Serial Interface Library and Server', | ||
author='Jason Carter', | ||
author_email='jason@jason-carter.net', | ||
url='http://github.com/JasonCarter80/concord232', | ||
packages=['concord232'], | ||
install_requires=['requests', 'stevedore', 'prettytable', 'pyserial', 'flask'], | ||
scripts=['concord232_server', 'concord232_client'], | ||
classifiers=[ | ||
'License :: OSI Approved :: Apache Software License', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
] | ||
) |