-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
52 lines (41 loc) · 1.39 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
47
48
49
50
51
52
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name = 'dnslink',
description = 'Python implementation of DNSLink protocol',
long_description = readme(),
long_description_content_type='text/markdown',
license = 'MIT',
version_format = '{tag}',
setup_requires = ['setuptools-git-version'],
packages = ['dnslink'],
entry_points = {
'console_scripts': ['dnslink=dnslink.__main__:main'],
},
install_requires = [
'dnspython>=1.0.0,<3.0.0',
],
extras_require = {
'lint': ['pylint'],
'test': ['pytest', 'pytest-cov'],
},
python_requires = '>= 3.4',
author = 'Filip Š',
author_email = '[email protected]',
url = 'https://github.com/filips123/DNSLinkPy/',
keywords = 'dns, dnslink, content-addressing, web3, decentralized',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Internet :: Name Service (DNS)',
'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
],
include_package_data = True,
)