-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch from
flit.ini
to pyproject.toml
- Loading branch information
Showing
2 changed files
with
50 additions
and
38 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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
[build-system] | ||
requires = ["flit"] | ||
build-backend = "flit.buildapi" | ||
|
||
[tool.flit.metadata] | ||
module = "ipfsapi" | ||
|
||
author = "py-ipfs-api team" | ||
author-email = "" | ||
home-page = "https://github.com/ipfs/py-ipfs-api" | ||
keywords = "ipfs storage distribution development" | ||
license = "MIT License" | ||
description-file = "README.md" | ||
|
||
# Unfortunately these currently need to be duplicated from `requirements.txt` | ||
requires-python = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*" | ||
requires = [ | ||
"requests (>=2.2.1)", | ||
"six" | ||
] | ||
|
||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
|
||
# Indicate who your project is intended for | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Information Technology", | ||
"Intended Audience :: Science/Research", | ||
|
||
"Topic :: Internet", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: System :: Filesystems", | ||
"Topic :: System :: Networking", | ||
|
||
# Pick your license as you wish (should match "license" above) | ||
"License :: OSI Approved :: MIT License", | ||
|
||
# Specify the Python versions you support here. In particular, ensure | ||
# that you indicate whether you support Python 2, Python 3 or both. | ||
"Programming Language :: Python :: 2", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.4", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6" | ||
] | ||
|
||
[tool.flit.metadata.urls] | ||
Documentation = "https://ipfs.io/ipns/QmZ86ow1byeyhNRJEatWxGPJKcnQKG7s51MtbHdxxUddTH/Software/Python/ipfsapi/" | ||
|