forked from dj-stripe/dj-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
86d44d9
commit 394653c
Showing
5 changed files
with
52 additions
and
66 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 |
---|---|---|
|
@@ -13,3 +13,6 @@ docs/_static | |
# Coverage | ||
/cover | ||
.coverage | ||
|
||
# Do not commit Poetry lockfiles for libraries | ||
poetry.lock |
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 |
---|---|---|
@@ -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" |