Skip to content

Commit 37adbd8

Browse files
committed
package name updated
1 parent 784d296 commit 37adbd8

File tree

5 files changed

+9
-3
lines changed

5 files changed

+9
-3
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

Diff for: setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

Diff for: setup.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,32 @@
55
from setuptools import setup, find_packages
66
from setuptools.command.test import test as TestCommand
77

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')))
99

10-
from RC522-Python import __version__ # flake8: noqa
10+
from RC522_Python import __version__
1111
sys.path.pop(0)
1212

1313
setup(
1414
name='RC522-Python',
1515
packages=find_packages(),
1616
include_package_data=True,
1717
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'],
1820
description='Raspberry Pi Python library for SPI RFID RC522 module.',
1921
long_description='Raspberry Pi Python library for SPI RFID RC522 module.',
2022
classifiers=[
2123
'Development Status :: 4 - Beta',
2224
'Intended Audience :: Developers',
23-
'License :: OSI Approved :: MIT License',
25+
'License :: OSI Approved :: GNU License',
2426
'Operating System :: OS Independent',
2527
'Topic :: Software Development',
2628
'Programming Language :: Python :: 2',
2729
'Programming Language :: Python :: 2.7',
2830
'Programming Language :: Python :: 3',
31+
'Programming Language :: Python :: 3.4',
2932
'Programming Language :: Python :: 3.5',
33+
'Programming Language :: Python :: 3.6',
3034
],
3135
author='STEMinds',
3236
author_email='[email protected]',

0 commit comments

Comments
 (0)