-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
67 lines (57 loc) · 1.8 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import find_packages, setup
with open("README.rst") as readme_file:
readme = readme_file.read()
requirements = [
"ruamel.yaml<0.17.5",
"strictyaml>=0.7.2",
"crontab==0.22.8",
"aiohttp>=3.0,<4",
"sentry-sdk",
"aiosmtplib>=1,<2",
"jinja2",
"pytz",
]
setup_requirements = ["setuptools_scm", "pytest-runner"]
test_requirements = [
"pytest-cov",
# https://github.com/pytest-dev/pytest-runner/issues/11#issuecomment-190355698
"pytest", # needs to be last
]
with open("HISTORY.rst") as history_file:
history = history_file.read()
setup(
name="yacron",
description="A modern Cron replacement that is Docker-friendly",
long_description=(readme + "\n\n" + history),
author="Gustavo Carneiro",
author_email="[email protected]",
url="https://github.com/gjcarneiro/yacron",
packages=find_packages(include=["yacron"]),
include_package_data=True,
install_requires=requirements,
license="MIT license",
zip_safe=True,
keywords="yacron",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Environment :: Console",
"Topic :: Utilities",
],
setup_requires=setup_requirements,
tests_require=test_requirements,
use_scm_version={
"write_to": "yacron/version.py",
},
entry_points={"console_scripts": ["yacron = yacron.__main__:main"]},
python_requires=">=3.10",
)