-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.07 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
from setuptools import setup
import rcdss
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name=rcdss.__name__,
version=rcdss.__version__,
description=rcdss.__doc__,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ripe-ncc/rcdss",
author="Ondřej Caletka",
author_email="[email protected]",
packages=["rcdss"],
setup_requires=["pytest-runner"],
python_requires=">=3.6",
install_requires=["dnspython>=2.3.0", "cryptography", "click"],
tests_require=["pytest"],
entry_points={
"console_scripts": [
"rcdss = rcdss.__main__:main",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3 :: Only",
"Topic :: System :: Systems Administration",
],
)