-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.07 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[tool.poetry]
name = "lorikeet"
version = "0.2.1"
# Don't forget to also change the version in:
# - package.json
# - docs/conf.py
description = "A simple, generic, API-only shopping cart framework for Django"
authors = ["Leigh Brenecki <[email protected]>"]
license = "MIT"
readme = "README.rst"
homepage = "https://lorikeet.readthedocs.io/"
repository = "https://github.com/excitedleigh/lorikeet"
[tool.poetry.dependencies]
python = ">=3.5"
django = ">=2.2,<4"
django-model-utils = "^4.0.0"
djangorestframework = "^3.10"
stripe = {version = "^2.41", optional = true}
premailer = {version = "^3.6", optional = true}
requests = {version = "^2.21", optional = true}
[tool.poetry.dev-dependencies]
sphinx = "~1.5.1"
sphinx-rtd-theme = "^0.1.9"
sphinx-js = "~1.3"
sphinxcontrib_httpdomain = "^1.5.0"
factory-boy = "^2.11"
pre-commit = "^1.20.0"
pytest = "^5.4.3"
pytest-django = "^3.7.0"
pytest-pythonpath = "^0.7.3"
[tool.poetry.extras]
stripe = ["stripe"]
email_invoice = ["premailer"]
starshipit = ["requests"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"