-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
41 lines (35 loc) · 1.1 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
from setuptools import setup
from doh_cli import __version__
def readme_md():
"""Return contents of README.md"""
return open("README.md").read()
def changelog_md():
"""Return contents of Changelog.md"""
return open("Changelog.md").read()
setup(
name="doh-cli",
version=__version__,
author="LibreOps",
author_email="[email protected]",
url="https://gitlab.com/libreops/doh-cli",
description="a simple DNS-over-HTTPS client",
long_description_content_type="text/markdown",
long_description=readme_md() + "\n\n" + changelog_md(),
include_package_data=True,
zip_safe=False,
license="LICENSE",
install_requires=[
"dnspython",
"requests"
],
packages=["doh_cli"],
scripts=["bin/doh-cli"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: Name Service (DNS)",
]
)