Skip to content

Commit

Permalink
Switch from flit.ini to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
ntninja committed May 27, 2018
1 parent 8777f4c commit 6cc1369
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 38 deletions.
38 changes: 0 additions & 38 deletions flit.ini

This file was deleted.

50 changes: 50 additions & 0 deletions pyproject.toml
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/"

0 comments on commit 6cc1369

Please sign in to comment.