forked from Domain-Connect/domainconnect_python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (43 loc) · 1.64 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
from setuptools import setup
test_deps = [
'unittest2 >= 1.1.0',
]
setup(name='domain_connect',
version='0.0.11',
description='Python client library for Domain Connect protocol. See: https://domainconnect.org',
long_description_content_type="text/markdown",
long_description=open('README.md').read(),
author='Pawel Kowalik',
author_email='[email protected]',
url='https://github.com/Domain-Connect/domainconnect_python',
license='https://github.com/Domain-Connect/domainconnect_python/blob/master/LICENSE',
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
packages=[
'domainconnect',
],
install_requires=[
'dnspython >= 1.16.0',
'publicsuffix >= 1.1.0',
'publicsuffixlist >= 0.7.7',
'six >= 1.12.0',
'future >= 0.18.3',
'cryptography>=3.3.2; python_version == "2.7"',
'cryptography>=39.0.1; python_version > "2.7" and python_version < "3.6"',
'cryptography>=40.0.2; python_version >= "3.6" and python_version < "3.7"',
'cryptography>=42.0.0; python_version >= "3.7"',
],
tests_require=test_deps,
extras_require={
'test': test_deps,
},
)