This repository has been archived by the owner on Feb 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
48 lines (46 loc) · 1.83 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
42
43
44
45
46
47
48
#!/usr/bin/env python
from setuptools import setup, find_packages
from opennode.utils.version import get_git_version
setup(
name = "opennode.oms.core",
version = get_git_version(),
description = """OpenNode OMS""",
author = "OpenNode Developers",
author_email = "developers@opennodecloud.com",
packages = find_packages(),
package_data={'opennode.oms': ['../oms.tac',
'../../opennode-oms.conf',
'../../oms_permissions',
'../../oms_groups',
'../../oms_acl',
'../../logging.conf',
]},
namespace_packages = ['opennode'],
entry_points = {'console_scripts': ['omsd = opennode.oms.daemon:run',
'omspy = opennode.oms.pyshell:run',
'omspasswd = opennode.oms.security.passwd:run',
'plugin = opennode.oms.plugin:run',
'obj_graph = opennode.oms.tools.obj_graph:run',
]},
install_requires = [
"setuptools", # Redundant but removes a warning
"Twisted==13.1.0",
"pyasn1==0.1.2", # required by Twisted conch
"transaction==1.3.0",
"zope.component==3.12",
"zope.app.catalog==3.8.1",
"zope.app.intid==3.7.1",
"grokcore.component==2.4",
"grokcore.security==1.5",
"grokcore.annotation==1.2",
"zope.securitypolicy==3.7.0",
"ipython>=0.11",
"ZODB3==3.10.5",
"pycrypto==2.6",
"pyOpenSSL==0.13",
"netaddr==0.7.6",
"BeautifulSoup==3.2.0",
"pam==0.1.3",
"pympler==0.3.1",
"PyYAML==3.10"],
)