-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 766 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python3
from setuptools import setup
setup(
name='pyelectronics',
version='0.1.4',
packages=['electronics', 'electronics.devices', 'electronics.gateways'],
url='https://github.com/MartijnBraam/pyElectronics',
license='MIT',
author='Martijn Braam',
author_email='[email protected]',
description='Python 3 library for working with electronics',
keywords=["electronics", "spi", "i2c", "buspirate"],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: MIT License"
],
)