-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.02 KB
/
setup.py
File metadata and controls
37 lines (35 loc) · 1.02 KB
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
from setuptools import setup, find_packages
import sys
if sys.hexversion < 0x02070000:
sys.exit("Python 2.7 or newer is required to use this package.")
setup(
name="legato",
version="1.3.2",
author="S[&]T",
url="https://github.com/stcorp/legato",
description="Task trigger daemon",
license="BSD",
packages=find_packages(),
entry_points={
"console_scripts": [
"legato = legato.main:main",
],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: System",
],
install_requires=[
"pyyaml",
"schedule",
"watchdog"
]
)