-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·40 lines (38 loc) · 1.26 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
#!/usr/bin/python2
from setuptools import setup, find_packages
setup(
name='Megacron',
version='0.4',
description='Distributed Cron Replacement',
author='John Tanner, Favian Contreras, Ben Zeghers',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'megacrond = megacron.daemon.main:main',
'megacrontab = megacron.edit:main',
'megacron-status = megacron.status:main'
]
},
install_requires=[
'croniter',
'python-daemon',
'lockfile'
],
data_files=[
('/etc', ['megacron/conf/megacron.conf'])
],
# Tests
#
# Tests must be wrapped in a unittest test suite by either a
# function, a TestCase class or method, or a module or package
# containing TestCase classes. If the named suite is a package,
# any submodules and subpackages are recursively added to the
# overall test suite.
test_suite='tests.unit_tests',
setup_requires=["setuptools_git >= 0.3"],
url='https://www.mediawiki.org/wiki/Facebook_Open_Academy/Cron',
license='Creative Commons Attribution-Noncommercial-Share Alike license',
long_description=open('README.rst').read()
)