Skip to content

Commit d569c31

Browse files
Thomas Rabaixrande
authored andcommitted
chores(cleanup): remove legacy files
1 parent b7cdb26 commit d569c31

File tree

6 files changed

+3
-155
lines changed

6 files changed

+3
-155
lines changed

.github/README.md

Lines changed: 0 additions & 115 deletions
This file was deleted.

.travis.yml

Lines changed: 0 additions & 12 deletions
This file was deleted.

AUTHORS

Lines changed: 0 additions & 5 deletions
This file was deleted.

MANIFEST.in

Lines changed: 0 additions & 11 deletions
This file was deleted.

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,17 @@ all: build upload
22

33
build:
44
pip install build twine
5+
rm -rf dist/
56
python -m build
67
twine check dist/*
78

89
upload-prod: build
910
export TWINE_USERNAME=__token__
10-
python -m twine upload dist/*
11+
bash -c 'read -s -p "Enter your Production PyPI token: " TWINE_PASSWORD; echo; export TWINE_PASSWORD; python -m twine upload dist/*'
1112

1213
upload-test: build
1314
export TWINE_USERNAME=__token__
14-
python -m twine --repository testpypi upload dist/*
15+
bash -c 'read -s -p "Enter your Test PyPI token: " TWINE_PASSWORD; echo; export TWINE_PASSWORD; python -m twine upload --repository testpypi dist/*'
1516

1617
clean:
1718
rm -rf build/ dist/ *.egg-info/ __pycache__/ .pytest_cache/ .mypy_cache/

pyproject.toml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@ dev = [
4848
test = [
4949
"pytest>=6.0",
5050
]
51-
tornado = [
52-
"tornado",
53-
"werkzeug",
54-
]
5551
flask = [
5652
"flask",
5753
"werkzeug",
@@ -62,9 +58,6 @@ jinja2 = [
6258
redis = [
6359
"redis",
6460
]
65-
twisted = [
66-
"twisted",
67-
]
6861

6962
[tool.setuptools]
7063
include-package-data = true
@@ -75,7 +68,6 @@ include = ["ioc*"]
7568
[tool.setuptools.package-data]
7669
"*" = ["*.yml", "*.yaml", "*.html"]
7770

78-
7971
[tool.mypy]
8072
python_version = "3.9"
8173
warn_return_any = false
@@ -95,9 +87,7 @@ ignore_errors = false
9587
[[tool.mypy.overrides]]
9688
module = [
9789
"yaml.*",
98-
"werkzeug.*",
9990
"element.*",
100-
"tornado.*",
10191
"redis.*",
10292
"jinja2.*",
10393
"flask.*",

0 commit comments

Comments
 (0)