-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
63 lines (61 loc) · 1.53 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
from setuptools import setup, find_packages
import sys, os
version = '0.0'
setup(name='ukhvoucher',
version=version,
description="",
long_description=""" """,
classifiers=[],
keywords='',
author='',
author_email='',
url='',
license='',
packages=find_packages('src'),
package_dir = {'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=[
"GenericCache",
"PyCrypto",
"cromlech.sessions.jwt",
"cromlech.sqlalchemy",
"docxtpl",
"dogpile.cache",
"dolmen.batch",
"dolmen.sqlcontainer",
"infrae.testbrowser",
"js.jquery_tablesorter",
"natsort",
"fuzzywuzzy[speedup]",
"ordered_set",
"plone.memoize",
"profilehooks",
"profilehooks",
#"psycopg2-binary",
"pycrypto",
"python-gettext",
"reportlab",
"ukh.ibmdbsa",
"ukhtheme.uvclight",
"ul.auth",
"ul.auth",
"ul.sql",
"uvc.validation",
"uvclight",
"webhelpers",
"xlsxwriter",
"zope.sendmail",
],
entry_points={
'fanstatic.libraries': [
'ukhvoucher = ukhvoucher.resources:library',
],
'paste.app_factory': [
'app = ukhvoucher.wsgi:router',
],
'pytest11': [
'ukhvoucher_fixtures = ukhvoucher.tests.fixtures',
]
}
)