-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
63 lines (58 loc) · 1.67 KB
/
Copy pathsetup.cfg
File metadata and controls
63 lines (58 loc) · 1.67 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
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
##########################
# Setup.py Configuration #
##########################
# Configuring setup()
[metadata]
name = flagman
version = 0.1.0-dev
url = https://github.com/scolby33/flagman
download_url = https://github.com/scolby33/flagman/releases
project_urls =
Bug Tracker = https://github.com/scolby33/flagman/issues
Documentation = https://flagman.readthedocs.io/en/latest/
Source Code = https://github.com/scolby33/flagman
author = Scott Colby
author_email = scolby33@gmail.com
maintainer = scolby33@gmail.com
maintainer_email = scolby33@gmail.com
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: POSIX
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3 :: Only
Topic :: System :: Logging
Topic :: System :: Monitoring
Topic :: Utilities
license = MIT
# for wheels https://wheel.readthedocs.io/en/stable/index.html#including-the-license-in-the-generated-wheel-file
license_file = LICENSE.rst
description = Perform arbitrary actions on signals.
long_description = file: README.rst
keywords =
signals
systemd
[options]
python_requires = >=3.7
tests_require =
tox
packages = find:
package_dir =
= src
zip_safe = true
[options.extras_require]
color = colorama
[options.entry_points]
console_scripts =
flagman = flagman.cli:main_wrapper
flagman.action =
print = flagman.actions:PrintAction
delay_print = flagman.actions:DelayedPrintAction
print_once = flagman.actions:PrintOnceAction
[options.packages.find]
where = src
# configuring bdist_wheel
[bdist_wheel]
python-tag = py37