|
5 | 5 | from setuptools import setup, find_packages |
6 | 6 | from setuptools.command.test import test as TestCommand |
7 | 7 |
|
8 | | -sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__),'RC522-Python'))) |
| 8 | +sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__),'RC522_Python'))) |
9 | 9 |
|
10 | | -from RC522-Python import __version__ # flake8: noqa |
| 10 | +from RC522_Python import __version__ |
11 | 11 | sys.path.pop(0) |
12 | 12 |
|
13 | 13 | setup( |
14 | 14 | name='RC522-Python', |
15 | 15 | packages=find_packages(), |
16 | 16 | include_package_data=True, |
17 | 17 | version=__version__, |
| 18 | + download_url = 'https://github.com/STEMinds/RC522-Python/archive/1.0.0.tar.gz', |
| 19 | + keywords = ['python', 'raspberry-pi', 'RC522', 'RFID', 'NFC', 'SPI'], |
18 | 20 | description='Raspberry Pi Python library for SPI RFID RC522 module.', |
19 | 21 | long_description='Raspberry Pi Python library for SPI RFID RC522 module.', |
20 | 22 | classifiers=[ |
21 | 23 | 'Development Status :: 4 - Beta', |
22 | 24 | 'Intended Audience :: Developers', |
23 | | - 'License :: OSI Approved :: MIT License', |
| 25 | + 'License :: OSI Approved :: GNU License', |
24 | 26 | 'Operating System :: OS Independent', |
25 | 27 | 'Topic :: Software Development', |
26 | 28 | 'Programming Language :: Python :: 2', |
27 | 29 | 'Programming Language :: Python :: 2.7', |
28 | 30 | 'Programming Language :: Python :: 3', |
| 31 | + 'Programming Language :: Python :: 3.4', |
29 | 32 | 'Programming Language :: Python :: 3.5', |
| 33 | + 'Programming Language :: Python :: 3.6', |
30 | 34 | ], |
31 | 35 | author='STEMinds', |
32 | 36 | |
|
0 commit comments