-
Notifications
You must be signed in to change notification settings - Fork 62
/
setup.py
45 lines (41 loc) · 1.43 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
try:
from setuptools import setup, find_packages
assert setup
except ImportError:
from distutils.core import setup
import glob
import tron
setup(
name="tron",
version=tron.__version__,
provides=["tron"],
author="Yelp",
author_email="yelplabs@yelp.com",
url="http://github.com/Yelp/Tron",
description="Job scheduling and monitoring system",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Topic :: System :: Monitoring",
"Topic :: System :: Systems Administration",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Development Status :: 4 - Beta",
],
packages=find_packages(
exclude=["tests.*", "tests", "example-cluster"],
)
+ ["tronweb"],
scripts=glob.glob("bin/*") + glob.glob("tron/bin/*.py"),
include_package_data=True,
long_description="""
Tron is a centralized system for managing periodic batch processes across a
cluster. If you find cron or fcron to be insufficient for managing complex work
flows across multiple computers, Tron might be for you.
For more information, look at the
`tutorial <http://tron.readthedocs.io/en/latest/tutorial.html>`_ or the
`full documentation <http://tron.readthedocs.io/en/latest/index.html>`_.
""",
)