-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrated the metadata into
setup.cfg
from setup.py
.
Added a section to `pyproject.toml` according to `PEP 517`. Version is now fetched automatically from git tags using `setuptools_scm`.
- Loading branch information
Showing
6 changed files
with
41 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Add any project-specific files here: | ||
|
||
sniffio/_version.py | ||
|
||
# Sphinx docs | ||
docs/build/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[metadata] | ||
name = sniffio | ||
author = Nathaniel J. Smith | ||
author_email = [email protected] | ||
license = MIT OR Apache-2.0 | ||
description = Sniff out which async library your code is running under | ||
long_description = file: README.rst | ||
keywords = async, trio, asyncio | ||
url = https://github.com/python-trio/sniffio | ||
classifiers = | ||
License :: OSI Approved :: MIT License | ||
License :: OSI Approved :: Apache Software License | ||
Framework :: Trio | ||
Framework :: AsyncIO | ||
Operating System :: POSIX :: Linux | ||
Operating System :: MacOS :: MacOS X | ||
Operating System :: Microsoft :: Windows | ||
Programming Language :: Python :: 3 :: Only | ||
Programming Language :: Python :: Implementation :: CPython | ||
Programming Language :: Python :: Implementation :: PyPy | ||
Intended Audience :: Developers | ||
Development Status :: 5 - Production/Stable | ||
|
||
[options] | ||
packages = find: | ||
python_requires = >=3.7 | ||
tests_require = curio | ||
|
||
[options.package_data] | ||
sniffio = py.typed |
This file was deleted.
Oops, something went wrong.