organize dirs

This commit is contained in:
2022-03-27 11:09:33 +03:00
parent 005db342a6
commit 8ac8a8d7a9
32 changed files with 61 additions and 336 deletions

3
~/Python/.pylintrc Normal file
View File

@ -0,0 +1,3 @@
[BASIC]
good-names = f
max-line-length = 100

13
~/Python/.pypirc Normal file
View File

@ -0,0 +1,13 @@
[distutils]
index-servers =
pypi
testpypi
[pypi]
repository = https://upload.pypi.org/legacy/
username = IIIypuk
[testpypi]
repository = https://test.pypi.org/legacy/
username = __token__
password = pypi-AgENdGVzdC5weXBpLm9yZwIkNzAzMjEwYzMtYjhjOC00NDBlLTlmYWItMmYxMTJkNzI4ZGUwAAIleyJwZXJtaXNzaW9ucyI6ICJ1c2VyIiwgInZlcnNpb24iOiAxfQAABiDXPiC4n3XZ-fa93tjjR14E2KfTelxuieNp-Lr-DJ4sxA

7
~/Python/pyproject.toml Normal file
View File

@ -0,0 +1,7 @@
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
requires-python = ">=3"
[tool.black]
line-length = 99