-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
30 lines (26 loc) · 940 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.md') as f:
readme = f.read()
tests_require = ['mock']
setup(
name='Chinese-RFID-Access-Control-Library',
version='0.1.2',
description='A library for interfacing with one of the most common RFID Access Control System sold in China.',
long_description=readme,
long_description_content_type='text/markdown',
author='Paul Brown',
author_email='paul90brown@gmail.com',
url='https://github.com/pawl/Chinese-RFID-Access-Control-Library',
license='MIT',
download_url='https://pypi.python.org/pypi/Chinese-RFID-Access-Control-Library',
keywords=['rfid', 'access control'],
py_modules=['rfid'],
test_suite="tests",
tests_require=tests_require,
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)