-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
34 lines (31 loc) · 785 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='black-dnsync',
version='0.1.0',
license='GPL',
description='dns syncer',
zip_safe=False,
include_package_data=True,
author='Maple',
author_email='maplevalley8@gmail.com',
platforms='any',
packages=['black_dnsync'],
entry_points="""
[console_scripts]
blackdnsync = black_dnsync.main:main
""",
install_requires=[
'configparser',
'paramiko',
'requests',
'termcolor',
],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
]
)