-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
55 lines (49 loc) · 1.55 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
#!/usr/bin/env python
from glob import glob
from setuptools import setup, find_packages
setup(
name="udns",
version="0.0.1",
description="micro dns server",
long_description="{0:s}\n\n{1:s}".format(
open("README.rst").read(), open("CHANGES.rst").read()
),
author="James Mills",
author_email="James Mills, prologic at shortcircuit dot net dot au",
url="https://github.com/prologic/udns/",
download_url="https://github.org/com/udns/releases/",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Communications :: Chat :: Internet Relay Chat",
],
license="MIT",
keywords="micro dns server udns",
platforms="POSIX",
packages=find_packages("."),
include_package_data=True,
scripts=glob("bin/*"),
dependency_links=[
"https://github.com/kiddouk/redisco/archive/master.zip#egg=redisco-0.2.4" # noqa
],
install_requires=(
"circuits==3.0",
"dnslib==0.9.3",
"redisco==0.2.4",
"cachetools==0.4.0",
),
entry_points={
"console_scripts": [
"udnsd=udns.server:main",
"udnsc=udns.client:main",
]
},
test_suite="tests.main.main",
zip_safe=False
)