Skip to content

Commit

Permalink
Merge pull request #46 from rouge8/packaging-and-compat-cleanup
Browse files Browse the repository at this point in the history
Packaging and compatibility cleanup
  • Loading branch information
glyph authored Oct 16, 2024
2 parents fac5c73 + b4ffbc3 commit 75e8b17
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- name: Checkout source code
uses: actions/checkout@v4
Expand Down
3 changes: 0 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
[aliases]
release = egg_info -RDb ''

[bdist_wheel]
universal = 1
11 changes: 9 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@
long_description = long_description,
long_description_content_type='text/markdown',
license = "MIT License",
python_requires=">=3",
install_requires=install_requires + ['incremental'],
url="https://github.com/glyph/ampoule",
url="https://github.com/twisted/ampoule",
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
Expand All @@ -36,7 +37,13 @@
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: System',
],
packages=["ampoule", "ampoule.test"],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py36
envlist = py37, py38, py39, py310, py311, py312, py313

[testenv]
commands = python -m twisted.trial ampoule

0 comments on commit 75e8b17

Please sign in to comment.