-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (39 loc) · 1.07 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='pytravelcard',
version='0.1',
description='tools for interacting with ITSO-compliant smartcards',
url='https://github.com/unlobito/pytravelcard',
author='Harley Watson',
author_email="[email protected]",
license='GNU General Public License v2 (GPLv2)',
packages=['pytravelcard'],
entry_points={
'console_scripts': [
'pytravelcard = pytravelcard.cli:cli'
]
},
cffi_modules=["pytravelcard.libfreefare_build:ffibuilder"],
install_requires=[
'click',
'cffi',
'bitstring'
],
extras_require={
'dev': [
'pytest',
'pytest-pep8',
'pytest-cov'
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
],
)