Skip to content

Commit

Permalink
Switch to Poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
jleclanche committed Jun 5, 2020
1 parent 86d44d9 commit 394653c
Showing 5 changed files with 52 additions and 66 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -13,3 +13,6 @@ docs/_static
# Coverage
/cover
.coverage

# Do not commit Poetry lockfiles for libraries
poetry.lock
6 changes: 0 additions & 6 deletions MANIFEST.in

This file was deleted.

49 changes: 49 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
[tool.poetry]
name = "dj-stripe"
version = "2.4.0.dev0"
description = "Django + Stripe made easy"
license = "MIT"
authors = [
"Alexander Kavanaugh <[email protected]>",
"Jerome Leclanche <[email protected]>",
"John Carter <[email protected]>",
]
readme = "README.rst"
repository = "https://github.com/dj-stripe/dj-stripe"
documentation = "https://dj-stripe.readthedocs.io/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Topic :: Office/Business :: Financial",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
]

packages = [
{ include = "djstripe" }
]
include = [
"AUTHORS.rst",
"CONTRIBUTING.rst",
"HISTORY.rst",
"LICENSE",
]
exclude = [
"manage.py"
]

[tool.poetry.dependencies]
python = "^3.6"
Django = ">=2.2"
jsonfield = ">=3.0"
# avoid 2.36.0, see https://github.com/dj-stripe/dj-stripe/issues/991
stripe = ">=2.32.0,!=2.36.0"

[tool.poetry.dev-dependencies]

[build-system]
requires = ["poetry>=1.0.4"]
build-backend = "poetry.masonry.api"
44 changes: 0 additions & 44 deletions setup.cfg

This file was deleted.

16 changes: 0 additions & 16 deletions setup.py

This file was deleted.

0 comments on commit 394653c

Please sign in to comment.