-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
22 lines (21 loc) · 941 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(name='l5x',
version='1.6',
author='Jason Valenzuela',
author_email='jvalenzuela1977@gmail.com',
packages=['l5x', 'tests'],
url='https://github.com/jvalenzuela/l5x',
license='LICENSE.txt',
description='RSLogix .L5X interface.',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Markup :: XML',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator'
])