-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (35 loc) · 922 Bytes
/
setup.py
File metadata and controls
43 lines (35 loc) · 922 Bytes
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
#coding:utf-8
import os
import sys
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding="utf8") as f:
README = f.read()
requires = [
'twisted',
'pyyaml',
'pyopenssl',
'setuptools',
'service_identity',
]
test_requirements = [
'nose',
]
setup(
name='smartdns',
description='An Intelligent DNS Similar to DNSPod',
version='3.1.8',
author='duanhongyi',
author_email='duanhyi@gmail.com',
packages=find_packages(),
include_package_data=True,
long_description=README,
url='https://github.com/duanhongyi/smartdns',
install_requires=requires,
tests_require=test_requirements,
platforms='all platform',
license='BSD',
long_description_content_type='text/markdown',
# install
entry_points={'console_scripts': ['sdns=smartdns.sdns:main']}
)