-
Notifications
You must be signed in to change notification settings - Fork 279
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from jkbecker/setup
- Loading branch information
Showing
24 changed files
with
237 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
__pycache__ | ||
venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include CHANGELOG.md | ||
include LICENSE | ||
include README.md | ||
include *.md | ||
include VERSION | ||
include tox.ini | ||
recursive-include src *.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.1.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
[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 | ||
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 | ||
Programming Language :: Python :: 3 | ||
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] | ||
package_dir= | ||
=src | ||
packages=find: | ||
install_requires = | ||
psutil | ||
pyyaml | ||
texttable | ||
|
||
[options.packages.find] | ||
where=src | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
plotman = plotman.plotman:main | ||
|
||
[options.extras_require] | ||
dev = | ||
%(test)s | ||
isort | ||
test = | ||
pytest | ||
pyfakefs | ||
|
||
[options.data_files] | ||
config = config.yaml | ||
bin = util/listlogs | ||
|
||
[isort] | ||
multi_line_output=3 | ||
include_trailing_comma=True | ||
force_grid_wrap=0 | ||
line_length=88 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import setuptools | ||
|
||
|
||
setuptools.setup() |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/usr/bin/env python3 | ||
|
||
from plotman import plotman | ||
|
||
|
||
"""Plotman module launcher. | ||
This is a shim that allows you to run plotman via | ||
python3 -m plotman | ||
""" | ||
plotman.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.