forked from 17zuoye/luiti
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
81 lines (72 loc) · 2.19 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# -*-coding:utf-8-*-
import os
from setuptools import setup
def get_static_files(root):
return [os.path.join(path, name)
for path, subdirs, files in os.walk(root)
for name in files]
package_data = sum(map(get_static_files,
["luiti/java/",
"luiti/webui/assets/",
"luiti/webui/bower_components/",
]), [])
package_data += ["luiti/webui/index.html"]
setup(
name='luiti',
version='0.2.2',
url='http://github.com/luiti/luiti/',
license='MIT',
author='David Chen',
author_email=''.join(reversed("moc.liamg@emojvm")),
description='Luiti = Luigi + time',
long_description=open("README.markdown").read(),
packages=[
'luiti',
'luiti/daemon',
'luiti/daemon/query_engine',
'luiti/daemon/utils',
'luiti/daemon/web',
'luiti/luigi_decorators',
'luiti/luigi_extensions',
'luiti/manager',
'luiti/schedule/',
'luiti/task_templates/',
'luiti/task_templates/time',
'luiti/task_templates/other',
'luiti/tests',
'luiti/utils', ],
scripts=[
'bin/luiti',
],
package_data={'luiti': package_data},
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
# 1. luigi related
"luigi >=2.0,<2.2",
"snakebite>=2.5,<2.6",
"protobuf>=2.6,<2.7",
"tornado>=4.0,<4.1",
"mechanize>=0.2,<0.3",
"python-daemon>=1.6,<1.7",
"MySQL-python>=1.2,<1.3",
"pymongo>=3.0",
# 2. luiti self
"etl_utils>=0.1,<0.2",
"arrow>=0.4,<0.5",
"inflector>=2.0,<2.1",
"pygments>=2.0,<2.1",
"ujson",
"jsonpickle",
"six",
"tabulate",
"toposort>=1.0,<1.1",
],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)