-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (21 loc) · 786 Bytes
/
setup.py
File metadata and controls
21 lines (21 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
setup(
name='pyCAN',
version='0.1',
author='Adam Lewis',
author_email='adam.lewis@questrail.com',
packages=['pycan','pycan.tools', 'pycan.tools.parsers', 'pycan.drivers'],
url='http://github.com/questrail/pycan',
license='LICENSE.txt',
description='Generic Python Controller Area Network (CAN) driver abstraction.',
requires=['pyserial (>=2.6)',],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Development Status :: 3 - Alpha',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)