forked from sllurp/sllurp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·58 lines (50 loc) · 1.45 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
import codecs
here = os.path.abspath(os.path.dirname(__file__))
def read(filename):
"""
Get the long description from a file.
"""
fname = os.path.join(here, filename)
with codecs.open(fname, encoding='utf-8') as f:
return f.read()
test_deps = ['nose2', 'flake8', 'tox']
install_deps = [
'click',
'twisted',
'six',
]
setup(
name='sllurp',
version='0.3.8',
description='RFID reader control library',
long_description=read('README.rst'),
author='Ben Ransford',
author_email='[email protected]',
url='https://github.com/ransford/sllurp',
license='GPLv3',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
keywords='llrp rfid reader',
packages=find_packages(),
install_requires=install_deps,
tests_require=test_deps,
extras_require={'test': test_deps},
test_suite='nose2.collector.collector',
entry_points={
'console_scripts': [
'sllurp=sllurp.cli:cli',
],
},
)