-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
72 lines (62 loc) · 2.05 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# vim:fenc=utf-8
#
# Copyright (C) 2021 Freie Universität Berlin
#
# Distributed under terms of the MIT license.
import os
from setuptools import setup, find_packages
PACKAGE = "aiodnsprox"
DESCRIPTION = "A Python-based DNS-over-X proxy based on aiocoap "
AUTHOR = "Martine S. Lenders"
AUTHOR_EMAIL = "[email protected]"
URL = "https://github.com/anr-bmbf-pivot/aiodnsprox"
def get_requirements():
with open("requirements.txt") as req_file:
for line in req_file:
yield line.strip()
def get_version(package):
"""Extract package version without importing file
Importing cause issues with coverage,
(modules can be removed from sys.modules to prevent this)
Importing __init__.py triggers importing rest and then requests too
Inspired from pep8 setup.py
"""
with open(os.path.join(package, "__init__.py")) as init_fd:
for line in init_fd:
if line.startswith("__version__"):
return eval(line.split("=")[-1]) # pylint:disable=eval-used
return None
setup(
name=PACKAGE,
version=get_version(PACKAGE),
description=DESCRIPTION,
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
license="MIT",
download_url=URL,
packages=find_packages(),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: End Users/Desktop",
"Environment :: Console",
"Topic :: Utilities",
],
install_requires=list(get_requirements()),
entry_points={
"console_scripts": [
"aiodns-proxy = aiodnsprox.cli.proxy:sync_main",
],
},
python_requires=">=3.7",
)