-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
69 lines (63 loc) · 1.89 KB
/
Copy pathsetup.py
File metadata and controls
69 lines (63 loc) · 1.89 KB
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
64
65
66
67
68
69
# -*- coding: utf-8 -*-
import sys
from distutils.core import setup
install_requires = ['six']
extras_requires = {
'web': ['webob'],
'fcgi': ['flup6'],
'sqla': ['sqlalchemy', 'packaging'],
'memcached': ['python-memcached'],
'cleanhtml': ['lxml'],
'renderhtml': ['jinja2'],
'images': ['pillow'],
}
tests_requires = [
'pymysql',
'pytest',
'pytest-cov',
'webtest',
]
if sys.version_info[0] < 3:
tests_requires.append('mock')
dependency_links = [
'https://github.com/ods/testalchemy/tarball/master#egg=testalchemy-0.4',
'https://github.com/lunant/mockcache/tarball/master#egg=mockcache-1.0.3_alpha',
]
extras_requires['tests'] = tests_requires
setup(
name='iktomi',
version='0.14',
packages=['iktomi',
'iktomi.utils',
'iktomi.forms',
'iktomi.web',
'iktomi.templates',
'iktomi.templates.jinja2',
'iktomi.db',
'iktomi.db.sqla',
'iktomi.cli',
'iktomi.unstable',
'iktomi.unstable.forms',
'iktomi.unstable.utils',
'iktomi.unstable.db',
'iktomi.unstable.db.sqla'],
package_dir={
'iktomi.templates.jinja2': 'iktomi/templates/jinja2',
},
package_data={
'iktomi.templates.jinja2': ['templates/*/*.html'],
},
install_requires=install_requires,
extras_require=extras_requires,
tests_require=tests_requires,
dependency_links=dependency_links,
author='Denis Otkidach',
author_email='denis.otkidach@gmail.com',
maintainer='Harut Dagesyan',
maintainer_email='yes@harutune.name',
description='A web tool: routing, forms, other useful things.',
# long_description=open('README').read(),
url='http://github.com/SmartTeleMax/iktomi/',
license='MIT',
keywords='web forms',
)