forked from rshk/jobcontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
62 lines (54 loc) · 2 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
import os
from setuptools import setup, find_packages
version = '0.1a'
here = os.path.dirname(__file__)
with open(os.path.join(here, 'README.rst')) as fp:
longdesc = fp.read()
with open(os.path.join(here, 'CHANGELOG.rst')) as fp:
longdesc += "\n\n" + fp.read()
setup(
name='jobcontrol',
version=version,
packages=find_packages(),
url='https://github.com/rshk/jobcontrol',
license='Apache 2.0 License',
author='Samuele Santi',
author_email='[email protected]',
description='Job scheduling and tracking library',
long_description=longdesc,
install_requires=[
'PrettyTable', # For creating tables
'celery[redis]', # For async tasks
'click', # For the CLI
'colorama', # For color stuff
'docutils', # For rendering docstings in the web UI
'flask', # For the webapp; utils used around the place
'humanize', # For nicer display of information
'nicelog', # For colorful logging
'psycopg2', # For postgresql storage
'pygments', # For colorizing source code in the web UI
'pyyaml', # For loding YAML configuration
'werkzeug', # Flask dependency, but utils used around too
],
# tests_require=tests_require,
# test_suite='tests',
classifiers=[
'License :: OSI Approved :: Apache Software License',
# 'Development Status :: 1 - Planning',
'Development Status :: 2 - Pre-Alpha',
# 'Development Status :: 3 - Alpha',
# 'Development Status :: 4 - Beta',
# 'Development Status :: 5 - Production/Stable',
# 'Development Status :: 6 - Mature',
# 'Development Status :: 7 - Inactive',
# 'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
package_data={'': ['README.rst', 'CHANGELOG.rst']},
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'jobcontrol-cli = jobcontrol.cli:main'
]
})