-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·27 lines (25 loc) · 1016 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
setup(name='mani',
version='0.3.2',
packages=['mani'],
install_requires=['redis',
'python-redis-lock',
'pytz'],
setup_requires=['setuptools'],
tests_require=['flake8'],
description='Distributed cron',
author='Sherin Kurian',
author_email='[email protected]',
url='https://github.com/sherin/mani',
download_url='https://github.com/sherin/mani/tarball/0.1',
keywords=['cron', 'distributed', 'redis'],
package_data={'mani.version': ['VERSION']},
classifiers=['Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: System',
'Topic :: Software Development',
'Development Status :: 4 - Beta'])