-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.02 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
from setuptools import setup, find_packages
version = '1.0'
setup(name='phenomine.web',
version=version,
description="",
long_description="""\
""",
# Get strings from http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[],
keywords="",
author="",
author_email="",
url="",
license="",
package_dir={'': 'src'},
packages=find_packages('src'),
namespace_packages=['phenomine',],
include_package_data=True,
zip_safe=False,
install_requires=['setuptools',
'grok',
'grokui.admin',
'fanstatic',
'zope.fanstatic',
'grokcore.startup',
# Add extra requirements here
'suds',
'js.jquery',
],
entry_points={
'fanstatic.libraries': [
'phenomine.web = phenomine.web.resource:library',
]
})