-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.43 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
42
43
44
45
46
47
48
49
50
[tool.poetry]
name = "drizm-commons"
version = "0.5.0"
description = "Python3 commons for the Drizm organization"
authors = ["ThaRising <[email protected]>"]
maintainers = ["Dominik Lewandowski <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/drizm-team/python-commons"
repository = "https://github.com/drizm-team/python-commons"
keywords = ["commons", "sqlalchemy"]
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
]
include = ["LICENSE"]
[tool.poetry.dependencies]
python = "^3.8"
sqlalchemy = { version = "1.3.20", optional = true }
google-auth = { version = "1.23.0", optional = true }
requests = { version = "^2.25.0", optional = true }
google-cloud-storage = { version = "1.35.0", optional = true }
Pillow = "^8.0.1"
[tool.poetry.dev-dependencies]
pytest = "^6.1.2"
mkdocs-material = "^6.2.3"
mkdocstrings = "^0.13.6"
black = "^20.8b1"
[tool.poetry.extras]
sqla = ["sqlalchemy"]
google = ["google-auth", "requests", "google-cloud-storage"]
all = ["sqlalchemy", "google-auth", "requests", "google-cloud-storage"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 80