-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
40 lines (30 loc) · 1.1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from setuptools import setup
setup(
name='micropython-wiegand',
description='MicroPython class to read from a Wiegand card reader',
long_description='MicroPython class to read from a Wiegand card reader',
# The project's main homepage.
url='https://github.com/pjz/micropython-wiegand',
# Author details
author='Paul Jimenez',
author_email='[email protected]',
# Choose your license
license='LGPLv3+',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Hardware',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
# What does your project relate to?
keywords='micropython wiegand keycard',
# SemVer
version='1.1.0',
# a single-file module
py_modules=['wiegand'],
)