Commit 9f6987b 1 parent d828529 commit 9f6987b Copy full SHA for 9f6987b
File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -12,3 +12,4 @@ Released on December 20, 2020
12
12
### Changed
13
13
14
14
* Minor refactoring for easier testing
15
+ * Fixed setup.py issues preventing successful packaging
Original file line number Diff line number Diff line change 5
5
with open ('README.md' ) as f :
6
6
readme = f .read ()
7
7
8
- with open ('LICENSE' ) as f :
9
- license = f .read ()
10
-
11
8
tests_require = ['mock' ]
12
9
13
10
setup (
14
11
name = 'Chinese-RFID-Access-Control-Library' ,
15
12
version = '0.1.0' ,
16
13
description = 'A library for interfacing with one of the most common RFID Access Control System sold in China.' ,
17
14
long_description = readme ,
15
+ long_description_content_type = 'text/markdown' ,
18
16
author = 'Paul Brown' ,
19
17
author_email = 'paul90brown@gmail.com' ,
20
18
url = 'https://github.com/pawl/Chinese-RFID-Access-Control-Library' ,
21
- license = license ,
19
+ license = 'MIT' ,
22
20
download_url = ['https://github.com/pawl/Chinese-RFID-Access-Control-Library/tarball/master#egg=package-0.1.0' ],
23
21
keywords = ['rfid' , 'access control' ],
24
22
py_modules = ['rfid' ],
25
23
test_suite = "tests" ,
26
24
tests_require = tests_require ,
25
+ classifiers = [
26
+ 'License :: OSI Approved :: MIT License' ,
27
+ 'Programming Language :: Python :: 2' ,
28
+ 'Programming Language :: Python :: 3' ,
29
+ ],
27
30
)
You can’t perform that action at this time.
0 commit comments