forked from ericaltendorf/plotman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
72 lines (66 loc) · 1.75 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
[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
desert
marshmallow
pendulum
psutil ~= 5.8
pyyaml
texttable
[options.packages.find]
where=src
[options.entry_points]
console_scripts =
plotman = plotman.plotman:main
[options.extras_require]
dev =
%(test)s
isort
test =
check-manifest
pytest
pytest-mock
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