Skip to content

chores(cleanup): remove legacy files #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 0 additions & 115 deletions .github/README.md

This file was deleted.

12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

5 changes: 0 additions & 5 deletions AUTHORS

This file was deleted.

11 changes: 0 additions & 11 deletions MANIFEST.in

This file was deleted.

5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@ all: build upload

build:
pip install build twine
rm -rf dist/
python -m build
twine check dist/*

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

upload-test: build
export TWINE_USERNAME=__token__
python -m twine --repository testpypi upload dist/*
bash -c 'read -s -p "Enter your Test PyPI token: " TWINE_PASSWORD; echo; export TWINE_PASSWORD; python -m twine upload --repository testpypi dist/*'
Comment on lines +11 to +15
Copy link
Preview

Copilot AI Jun 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interactive prompts in the Makefile can break automated CI/CD. Consider reading TWINE_PASSWORD from the environment when set and only falling back to read -s when it’s missing.

Copilot uses AI. Check for mistakes.


clean:
rm -rf build/ dist/ *.egg-info/ __pycache__/ .pytest_cache/ .mypy_cache/
Expand Down
10 changes: 0 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,6 @@ dev = [
test = [
"pytest>=6.0",
]
tornado = [
"tornado",
"werkzeug",
]
flask = [
"flask",
"werkzeug",
Expand All @@ -62,9 +58,6 @@ jinja2 = [
redis = [
"redis",
]
twisted = [
"twisted",
]

[tool.setuptools]
include-package-data = true
Expand All @@ -75,7 +68,6 @@ include = ["ioc*"]
[tool.setuptools.package-data]
"*" = ["*.yml", "*.yaml", "*.html"]


[tool.mypy]
python_version = "3.9"
warn_return_any = false
Expand All @@ -95,9 +87,7 @@ ignore_errors = false
[[tool.mypy.overrides]]
module = [
"yaml.*",
"werkzeug.*",
"element.*",
"tornado.*",
"redis.*",
"jinja2.*",
"flask.*",
Expand Down