Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
Adding License details
  • Loading branch information
JasonCarter80 authored Aug 14, 2024
1 parent 1f4ac1d commit 6166ab1
Showing 1 changed file with 19 additions and 10 deletions.
29 changes: 19 additions & 10 deletions setup.py
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',
]
)

0 comments on commit 6166ab1

Please sign in to comment.