Skip to content
This repository was archived by the owner on Nov 2, 2022. It is now read-only.

Commit f14bdf7

Browse files
committed
Finish filling in administrative junk
1 parent 0cdac1d commit f14bdf7

File tree

3 files changed

+12
-18
lines changed

3 files changed

+12
-18
lines changed

README.rst

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@ exceptiongroup
33

44
Welcome to `exceptiongroup <https://github.com/python-trio/exceptiongroup>`__!
55

6-
A way to represent multiple things going wrong at the same time, in Python
6+
A way to represent multiple things going wrong at the same time, in
7+
Python.
78

8-
License: Your choice of MIT or Apache License 2.0
9+
This project is currently maintained by the `Trio project
10+
<https://trio.readthedocs.io>`__, but the goal is for some version of
11+
it to be merged into Python 3.8, so it can be used in both Trio and
12+
asyncio. For more information, see:
13+
https://github.com/python-trio/trio/issues/611
914

10-
COOKIECUTTER-TRIO-TODO: finish filling in your README!
11-
Must be valid ReST; also used as the PyPI description.
15+
License: Your choice of MIT or Apache License 2.0

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@ package = "exceptiongroup"
33
filename = "docs/source/history.rst"
44
directory = "newsfragments"
55
underlines = ["-", "~", "^"]
6-
# COOKIECUTTER-TRIO-TODO: fill in the URL below to point to your issue tracker:
7-
issue_format = "`#{issue} <https://github.com/ACCOUNT/REPO/issues/{issue}>`__"
6+
issue_format = "`#{issue} <https://github.com/python-trio/exceptiongroup/issues/{issue}>`__"

setup.py

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,29 +18,20 @@
1818
"trio",
1919
],
2020
keywords=[
21-
# COOKIECUTTER-TRIO-TODO: add some keywords
22-
# "async", "io", "networking", ...
21+
"async", "exceptions", "error handling",
2322
],
2423
python_requires=">=3.5",
2524
classifiers=[
2625
"License :: OSI Approved :: MIT License",
2726
"License :: OSI Approved :: Apache Software License",
2827
"Framework :: Trio",
29-
# COOKIECUTTER-TRIO-TODO: Remove any of these classifiers that don't
30-
# apply:
28+
"Framework :: AsyncIO",
3129
"Operating System :: POSIX :: Linux",
3230
"Operating System :: MacOS :: MacOS X",
3331
"Operating System :: Microsoft :: Windows",
3432
"Programming Language :: Python :: 3 :: Only",
3533
"Programming Language :: Python :: Implementation :: CPython",
3634
"Programming Language :: Python :: Implementation :: PyPy",
37-
# COOKIECUTTER-TRIO-TODO: Consider adding trove classifiers for:
38-
#
39-
# - Development Status
40-
# - Intended Audience
41-
# - Topic
42-
#
43-
# For the full list of options, see:
44-
# https://pypi.org/classifiers/
35+
"Intended Audience :: Developers",
4536
],
4637
)

0 commit comments

Comments
 (0)