forked from ericaltendorf/plotman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
78 lines (72 loc) · 1.88 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
69
70
71
72
73
74
75
76
77
78
[metadata]
name = plotman
version = file: VERSION
author = Eric Altendorf
home-page = https://github.com/ericaltendorf/plotman
description = Chia plotting manager
long-description = file: README.md
long_description_content_type = text/markdown
license = Apache 2.0
license-file = LICENSE
python_requires = >=3.7
keywords = chia, blockchain, automation, process management
classifiers =
Development Status :: 3 - Alpha
Environment :: Console :: Curses
Intended Audience :: Developers
Intended Audience :: System Administrators
Intended Audience :: Information Technology
License :: OSI Approved :: Apache Software License
Natural Language :: English
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Programming Language :: Python :: 3
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: System :: Monitoring
Topic :: System :: Systems Administration
Topic :: Utilities
project_urls =
Bug Tracker = https://github.com/ericaltendorf/plotman/issues
Changelog = https://github.com/ericaltendorf/plotman/blob/main/CHANGELOG.md
[options]
include_package_data = True
package_dir=
=src
packages=find:
install_requires =
appdirs ~= 1.4
attrs == 21.2
click ~= 7.1
desert == 2020.11.18
marshmallow ~= 3.12
pendulum ~= 2.1
psutil ~= 5.8
pyyaml ~= 5.4
texttable ~= 1.6
[options.packages.find]
where=src
[options.entry_points]
console_scripts =
plotman = plotman.plotman:main
[options.extras_require]
coverage =
coverage
diff-cover
dev =
%(test)s
isort
test =
%(coverage)s
check-manifest
pytest
pytest-cov
pyfakefs
[options.data_files]
config = src/plotman/resources/plotman.yaml
bin = util/listlogs
[isort]
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
line_length=88