🤖 Repository layout updated to latest version
Some checks failed
Test Python / Test (push) Failing after 23s
Some checks failed
Test Python / Test (push) Failing after 23s
This commit was automatically generated by a script: https://gitfub.space/Jmaa/python-omni
This commit is contained in:
parent
959fa012d7
commit
4938160f7c
15
.gitea/workflows/python-package.yml
Normal file
15
.gitea/workflows/python-package.yml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
name: Package Python
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- 'v[0-9]+.[0-9]+.[0-9]+'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Package:
|
||||||
|
uses: jmaa/workflows/.gitea/workflows/python-package.yaml@v6.21
|
||||||
|
with:
|
||||||
|
REGISTRY_DOMAIN: gitfub.space
|
||||||
|
REGISTRY_ORGANIZATION: jmaa
|
||||||
|
secrets:
|
||||||
|
PIPY_REPO_USER: ${{ secrets.PIPY_REPO_USER }}
|
||||||
|
PIPY_REPO_PASS: ${{ secrets.PIPY_REPO_PASS }}
|
6
.gitea/workflows/python-test.yml
Normal file
6
.gitea/workflows/python-test.yml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
name: Test Python
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Test:
|
||||||
|
uses: jmaa/workflows/.gitea/workflows/python-test.yaml@v6.21
|
20
.gitignore
vendored
Normal file
20
.gitignore
vendored
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# Program specific
|
||||||
|
/output/
|
||||||
|
/deps/
|
||||||
|
/secrets
|
||||||
|
/private_deps/
|
||||||
|
/data/
|
||||||
|
/config/
|
||||||
|
|
||||||
|
# Python
|
||||||
|
__pycache__/
|
||||||
|
/build/
|
||||||
|
/dist/
|
||||||
|
*.egg-info/
|
||||||
|
.mypy_cache/
|
||||||
|
|
||||||
|
# Python, Testing
|
||||||
|
/test/secrets.py
|
||||||
|
/.coverage
|
||||||
|
/.hypothesis/
|
||||||
|
/htmlcov/
|
21
LICENSE
Normal file
21
LICENSE
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2024 Jon Michael Aanes
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
34
README.md
Normal file
34
README.md
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
<!--- WARNING --->
|
||||||
|
<!--- THIS IS AN AUTO-GENERATED FILE --->
|
||||||
|
<!--- MANUAL CHANGES CAN AND WILL BE OVERWRITTEN --->
|
||||||
|
|
||||||
|
# Automatic Crypto Seller.
|
||||||
|
|
||||||
|
Description TODO.
|
||||||
|
|
||||||
|
|
||||||
|
# License
|
||||||
|
|
||||||
|
```
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2024 Jon Michael Aanes
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
|
```
|
76
ruff.toml
Normal file
76
ruff.toml
Normal file
|
@ -0,0 +1,76 @@
|
||||||
|
#[tool.ruff]
|
||||||
|
lint.select = [ 'ALL' ]
|
||||||
|
lint.ignore = [
|
||||||
|
'ANN', # Type annotations (lots of work.)
|
||||||
|
'FBT', # Boolean trap is bullshit.
|
||||||
|
'C90', 'PLR0911', 'PLR0915', 'PLR0913', # Code complexity measures are bullshit.
|
||||||
|
'Q003', 'D205', # Format conflict
|
||||||
|
|
||||||
|
'TCH', # Microoptimization at the cost of readability
|
||||||
|
|
||||||
|
'D100', 'D101', 'D102', 'D103', 'D104', 'D105', 'D106', 'D107', 'D300', 'D401', # Missing docstrings (lots of work)
|
||||||
|
'TD002', 'TD003', 'TD004', 'FIX', # Who cares about TODO standards?
|
||||||
|
"E501", 'PLR0912', 'PTH123', 'F405', 'E402', 'PLW0603',
|
||||||
|
|
||||||
|
'SIM102',
|
||||||
|
|
||||||
|
'TRY002', 'TRY003',
|
||||||
|
]
|
||||||
|
|
||||||
|
# Autofix
|
||||||
|
lint.fixable = [
|
||||||
|
'SIM', 'C', 'Q', 'D',
|
||||||
|
'UP035', 'UP004', 'UP032', 'UP006', 'UP007', 'I001',
|
||||||
|
'F401', 'COM812', 'B011', 'PLR1722', 'PLR0402', 'S101',
|
||||||
|
]
|
||||||
|
lint.unfixable = ['SIM102', 'SIM114']
|
||||||
|
|
||||||
|
# Exclude a variety of commonly ignored directories.
|
||||||
|
exclude = [
|
||||||
|
".bzr",
|
||||||
|
".direnv",
|
||||||
|
".eggs",
|
||||||
|
".git",
|
||||||
|
".hg",
|
||||||
|
".mypy_cache",
|
||||||
|
".nox",
|
||||||
|
".pants.d",
|
||||||
|
".pytype",
|
||||||
|
".ruff_cache",
|
||||||
|
".svn",
|
||||||
|
".tox",
|
||||||
|
".venv",
|
||||||
|
"__pypackages__",
|
||||||
|
"_build",
|
||||||
|
"buck-out",
|
||||||
|
"build",
|
||||||
|
"dist",
|
||||||
|
"node_modules",
|
||||||
|
"venv",
|
||||||
|
]
|
||||||
|
|
||||||
|
# Same as Black.
|
||||||
|
line-length = 88
|
||||||
|
|
||||||
|
# Allow unused variables when underscore-prefixed.
|
||||||
|
lint.dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
|
||||||
|
|
||||||
|
# Assume Python 3.10.
|
||||||
|
target-version = "py310"
|
||||||
|
|
||||||
|
[lint.flake8-quotes]
|
||||||
|
inline-quotes = "single"
|
||||||
|
multiline-quotes = "double"
|
||||||
|
docstring-quotes = "double"
|
||||||
|
|
||||||
|
[format]
|
||||||
|
quote-style = "single"
|
||||||
|
indent-style = "space"
|
||||||
|
docstring-code-format = true
|
||||||
|
|
||||||
|
[lint.per-file-ignores]
|
||||||
|
"test/*" = [
|
||||||
|
"S101", # Test Asserts
|
||||||
|
"T201", # Debug prints
|
||||||
|
"PLR2004", # magic-value-comparison
|
||||||
|
]
|
94
setup.py
94
setup.py
|
@ -1 +1,93 @@
|
||||||
# Bogus
|
# WARNING
|
||||||
|
#
|
||||||
|
# THIS IS AN AUTOGENERATED FILE.
|
||||||
|
#
|
||||||
|
# MANUAL CHANGES CAN AND WILL BE OVERWRITTEN.
|
||||||
|
|
||||||
|
import re
|
||||||
|
|
||||||
|
from setuptools import setup
|
||||||
|
|
||||||
|
PACKAGE_NAME = 'crypto_seller'
|
||||||
|
|
||||||
|
PACKAGE_DESCRIPTION = """
|
||||||
|
# Automatic Crypto Seller.
|
||||||
|
|
||||||
|
Description TODO.
|
||||||
|
|
||||||
|
|
||||||
|
# License
|
||||||
|
|
||||||
|
```
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2024 Jon Michael Aanes
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
|
```""".strip()
|
||||||
|
|
||||||
|
PACKAGE_DESCRIPTION_SHORT = """
|
||||||
|
Description TODO.""".strip()
|
||||||
|
|
||||||
|
|
||||||
|
def parse_version_file(text: str) -> str:
|
||||||
|
match = re.match(r'^__version__\s*=\s*(["\'])([\d\.]+)\1$', text)
|
||||||
|
if match is None:
|
||||||
|
msg = 'Malformed _version.py file!'
|
||||||
|
raise Exception(msg)
|
||||||
|
return match.group(2)
|
||||||
|
|
||||||
|
|
||||||
|
with open(PACKAGE_NAME + '/_version.py') as f:
|
||||||
|
version = parse_version_file(f.read())
|
||||||
|
|
||||||
|
|
||||||
|
def parse_requirements(text: str) -> list[str]:
|
||||||
|
return text.strip().split('\n')
|
||||||
|
|
||||||
|
|
||||||
|
def read_requirements(path: str) -> list[str]:
|
||||||
|
with open(path) as f:
|
||||||
|
return parse_requirements(f.read())
|
||||||
|
|
||||||
|
|
||||||
|
REQUIREMENTS_MAIN = """
|
||||||
|
fin_defs @ git+https://gitfub.space/Jmaa/fin-defs
|
||||||
|
fin_depo @ git+https://gitfub.space/Jmaa/fin-depo"""
|
||||||
|
|
||||||
|
REQUIREMENTS_TEST = """
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name=PACKAGE_NAME,
|
||||||
|
version=version,
|
||||||
|
description=PACKAGE_DESCRIPTION_SHORT,
|
||||||
|
long_description=PACKAGE_DESCRIPTION,
|
||||||
|
long_description_content_type='text/markdown',
|
||||||
|
author='Jon Michael Aanes',
|
||||||
|
author_email='jonjmaa@gmail.com',
|
||||||
|
url='https://gitfub.space/Jmaa/' + PACKAGE_NAME,
|
||||||
|
packages=[PACKAGE_NAME],
|
||||||
|
install_requires=parse_requirements(REQUIREMENTS_MAIN),
|
||||||
|
extras_require={
|
||||||
|
'test': parse_requirements(REQUIREMENTS_TEST),
|
||||||
|
},
|
||||||
|
python_requires='>=3.9',
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user