-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 755 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from distutils.core import setup
setup(name='pytronics',
version='0.4.2',
license='GPLv3',
package_dir={'pytronics': 'src'},
packages=['pytronics'],
data_files=[('/etc', ['pytronics'])],
description='Rascal hardware API',
long_description='Hardware control library for the Rascal, a small computer for art and science',
author='Brandon Stafford',
author_email='brandon@rascalmicro.com',
url='http://rascalmicro.com',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python'
],
)