File: setup.py

package info (click to toggle)
doh-cli 0.8-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 216 kB
  • sloc: python: 142; sh: 24; makefile: 4
file content (41 lines) | stat: -rw-r--r-- 1,122 bytes parent folder | download
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="team@libreops.cc",
    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)",
    ]
)