File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44- " 2.7"
55- " 3.6"
66- " 3.7"
7+ - " 3.8"
8+ - " 3.9"
79script :
810- pytest
911deploy :
Original file line number Diff line number Diff line change @@ -145,6 +145,7 @@ dc = DomainConnect(
145145## CHANGELOG
146146| version | date | changes |
147147| ------- | -----------| ------ |
148+ | 0.0.8 | 2020-11-09 | NEW FEATURE: Detailed information on access token request fail |
148149| 0.0.7 | 2019-10-29 | Bugfix: error when setting up .app domain |
149150| 0.0.6 | 2019-07-05 | UPDATE: moved from pycrypto to cryptography (due to know security issues) |
150151| 0.0.5 | 2019-03-12 | NEW FEATURE: url signing capability added |
Original file line number Diff line number Diff line change 33from setuptools import setup
44
55setup (name = 'domain_connect' ,
6- version = '0.0.7 ' ,
6+ version = '0.0.8 ' ,
77 description = 'Python client library for Domain Connect protocol. See: https://domainconnect.org' ,
88 long_description_content_type = "text/markdown" ,
99 long_description = open ('README.md' ).read (),
1010 author = 'Pawel Kowalik' ,
1111 author_email = 'pawel-kow@users.noreply.github.com' ,
1212 url = 'https://github.com/Domain-Connect/domainconnect_python' ,
1313 license = 'https://github.com/Domain-Connect/domainconnect_python/blob/master/LICENSE' ,
14+ #python 3.5 failing in tests
1415 classifiers = [
1516 'Programming Language :: Python :: 2.7' ,
1617 'Programming Language :: Python :: 3.6' ,
18+ 'Programming Language :: Python :: 3.7' ,
19+ 'Programming Language :: Python :: 3.8' ,
20+ 'Programming Language :: Python :: 3.9' ,
1721 ],
1822 packages = [
1923 'domainconnect' ,
You can’t perform that action at this time.
0 commit comments