-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop support of raw `distutils`. Removed `requirements.txt`.
- Loading branch information
Showing
5 changed files
with
27 additions
and
30 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
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,5 @@ | ||
[build-system] | ||
requires = ["setuptools>=42.2.0", "setuptools_scm[toml]>=3.4.3"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] |
This file was deleted.
Oops, something went wrong.
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,2 +1,22 @@ | ||
[metadata] | ||
name = requests-file | ||
author = David Shea | ||
author_email = [email protected] | ||
license = Apache 2.0 | ||
description = File transport adapter for Requests | ||
url = http://github.com/dashea/requests-file | ||
classifiers = | ||
Development Status :: 3 - Alpha | ||
Environment :: Plugins | ||
Intended Audience :: Developers | ||
License :: OSI Approved :: Apache Software License | ||
Programming Language :: Python :: 2.7 | ||
Programming Language :: Python :: 3 | ||
|
||
[bdist_wheel] | ||
universal = 1 | ||
|
||
[options] | ||
py_modules = requests_file | ||
install_requires = requests>=1.0.0 | ||
test_suite = tests |