forked from kgaughan/uwhoisd
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
57 lines (45 loc) · 1.38 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
#!/usr/bin/env python
from __future__ import with_statement
import os.path
from setuptools import setup, find_packages
def read(filename: str) -> str:
"""Read files relative to this file."""
full_path = os.path.join(os.path.dirname(__file__), filename)
with open(full_path, 'r') as fh:
return fh.read()
setup(
name='uwhoisd',
version='0.0.7',
description="Universal domain WHOIS proxy server.",
long_description=read('README.md') + "\n\n" + read("ChangeLog"),
url='https://github.com/kgaughan/uwhoisd/',
license='MIT',
packages=find_packages(exclude=['tests']),
zip_safe=True,
setup_requires=[
'setuptools',
'wheel',
],
install_requires=[
'tornado',
'redis>=3'
],
entry_points={
'console_scripts': (
'uwhoisd = uwhoisd:main',
),
},
scripts=['bin/run_backend.py', 'bin/start.py'],
classifiers=( # type: ignore[arg-type]
'Development Status :: 2 - Pre-Alpha',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: System :: Networking',
),
author='Keith Gaughan',
author_email='[email protected]',
)