-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (30 loc) · 1.27 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
'''
Created on Mar 9, 2014
@author: Anduril
'''
from setuptools import setup
setup(
name = "ChorusCore",
version = "1.0.001",
description = "A test framework based on unittest, support baselines assertion, give pretty html report",
author = "Anduril, mxu",
author_email = "[email protected]",
packages = ['ChorusCore'],
zip_safe = False,
include_package_data = True,
install_requires = [
'httplib2>=0.8',
'Jinja2>=2.6',
'mysql-connector-python>=1.1.6,<1.1.7',
'pycrypto>=2.6,<2.7',
'Pillow>=2.5.1',
'paramiko',
'psutil',
"web.py"
],
entry_points = {"console_scripts":['chorusrun=ChorusCore.RunTest:main',
'chorussetup=ChorusCore.CreateSamples:main',
'chorusmodify=ChorusCore.RunTest:modify_config',
'chorusserver=ChorusCore.ChorusServer:main']},
url = "https://github.com/ChorusCore/"
)