Skip to content

Commit

Permalink
package name updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Zontex committed Aug 14, 2020
1 parent 784d296 commit 37adbd8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,32 @@
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand

sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__),'RC522-Python')))
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__),'RC522_Python')))

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

setup(
name='RC522-Python',
packages=find_packages(),
include_package_data=True,
version=__version__,
download_url = 'https://github.com/STEMinds/RC522-Python/archive/1.0.0.tar.gz',
keywords = ['python', 'raspberry-pi', 'RC522', 'RFID', 'NFC', 'SPI'],
description='Raspberry Pi Python library for SPI RFID RC522 module.',
long_description='Raspberry Pi Python library for SPI RFID RC522 module.',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'License :: OSI Approved :: GNU License',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
author='STEMinds',
author_email='contact@steminds.com',
Expand Down

0 comments on commit 37adbd8

Please sign in to comment.