-
Notifications
You must be signed in to change notification settings - Fork 280
/
setup.cfg
85 lines (79 loc) · 2.03 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
79
80
81
82
83
84
85
[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
packaging ~= 20.9
pendulum ~= 2.1
psutil ~= 5.8
pyyaml ~= 5.4
texttable ~= 1.6
typing-extensions ~= 3.10
[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
pytest
pytest-cov
pyfakefs
checks =
black == 21.7b0
check-manifest ~= 0.46
mypy == 0.902
types-pkg_resources ~= 0.1.2
%(test)s
[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