-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
41 lines (36 loc) · 1.14 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
#import os
import sys
from setuptools import setup, find_packages
requirements = ['pyzmq']#, 'python-novaclient', 'python-keystoneclient']
if sys.version_info < (2, 6):
requirements.append('simplejson')
if sys.version_info < (2, 7):
requirements.append('argparse')
setup(
name = "dough",
version = "0.1",
description = "OpenStack Billing System",
long_description = "OpenStack Billing System",
url = 'https://github.com/lzyeval/dough',
license = 'Apache',
author = 'Sina Corp.',
author_email = '[email protected]',
packages = find_packages(exclude=['tests', 'tests.*']),
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
install_requires = requirements
)
"""
tests_require = ["nose", "mock", "mox"],
test_suite = "nose.collector",
entry_points = {
'console_scripts': ['keystone = keystoneclient.shell:main']
}
"""