-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
68 lines (63 loc) · 1.44 KB
/
setup.cfg
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
68
[metadata]
name = clustercron
description = Cron job wrapper that ensures a script gets run from one node in the cluster.
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/maartenq/clustercron
author = Maarten
author_email = ikmaarten@gmail.com
license = ISC
license_file = LICENSE.txt
classifiers =
Intended Audience :: System Administrators
License :: OSI Approved :: ISC License (ISCL)
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Topic :: System :: Clustering
keywords = clustercron
project_urls =
Bug Tracker = https://github.com/maartenq/clustercron/issues
Changelog = https://github.com/maartenq/clustercron/blob/main/HISTORY.rst
use_scm_version = True,
[options]
packages = find:
install_requires =
boto
boto3
python_requires = >=3.6
include_package_data = True
package_dir =
= src
setup_requires =
setuptools-scm
test_suite = tests
zip_safe = False
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
clustercron = clustercron.main:command
[options.extras_require]
dev =
Sphinx
black
build
flake8
pre-commit
pytest
pytest-cov
responses
sphinx-rtd-theme
tox
twine
docs =
Sphinx
sphinx-rtd-theme
test =
pytest
pytest-cov
responses
[bdist_wheel]
universal = 1