forked from mushkevych/scheduler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 1.29 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
from distutils.core import setup
setup(name = 'synergy_scheduler',
version = '1.1',
description = 'Synergy Scheduler',
author = 'Bohdan Mushkevych',
author_email = '[email protected]',
url = 'https://github.com/mushkevych/scheduler',
packages = ['db', 'db.dao', 'db.manager', 'db.model', 'mq', 'mx', 'scheduler', 'supervisor', 'system', 'workers'],
package_data = {'mx': ['static/*', 'templates/*'],
'mq': ['AUTHORS', 'LICENSE']},
long_description = '''Really long text here.''',
license = 'Modified BSD License',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: JavaScript',
'Topic :: Communications :: Email',
'Topic :: Office/Business :: Scheduling',
'Topic :: Utilities',
],
requires=['werkzeug', 'jinja2', 'amqp', 'pymongo', 'psutil', 'fabric', 'setproctitle']
)