-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (32 loc) · 855 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
35
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
REQUIRES = [
'configobj',
'falcon',
'setuptools >= 1.1.6',
'six',
'stoplight'
]
setup(
name='dynamicNetworkConfig',
version='0.2',
description='Dynamic Network Configuration',
license='Apache License 2.0',
url='',
author='Clockwerks Software, LLC',
author_email='',
install_requires=REQUIRES,
test_suite='dynamicNetworkConfig',
zip_safe=False,
entry_points={
'console_scripts': [
'dnc_server = dynamicNetworkConfig.cmd.server:run',
# 'dnc_client = dynamicNetworkConfig.cmd.client:run'
]
},
data_files=[
('config', ['examples/config.ini', 'examples/configspec.ini'])
],
packages=find_packages(exclude=['tests*', 'dynamicNetworkConfig/tests*'])
)