-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 706 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(
name='uhf_reader',
version='0.2.7',
packages=['uhf_reader'],
url='https://github.com/madprogrammer/mr6100-python',
license='MIT',
author='Sergey Anufrienko',
author_email='serg@anufrienko.net',
description='Library to interface with Marktrace MR6100 series UHF RFID reader',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)