-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (51 loc) · 1.12 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
51
52
53
54
55
56
57
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]
[tool.poetry]
authors = ["Lukas Karlsson <[email protected]>"]
description = "BITS App Engine"
exclude = [
"**/*.pyc",
"**/*.pyi",
]
homepage = "https://github.com/broadinstitute/bits-appengine.git"
keywords = ["appengine"]
license = "BSD-3-Clause"
name = "bits-appengine"
packages = [
{ include = "bits" },
]
readme = "README.md"
repository = "https://github.com/broadinstitute/bits-appengine.git"
version = "1.3.0"
[tool.poetry.dependencies]
python = "^3.9" # Compatible python versions must be declared here
flask = "*"
google-api-python-client = "*"
google-auth = "*"
google-cloud-datastore = "*"
google-cloud-firestore = "*"
httplib2 = "*"
oauth2client = "*"
toml = "*"
[tool.poetry.dev-dependencies]
pydocstyle = "*"
pylint = "*"
pyyaml = "*"
twine = "*"
wheel = "*"
yamllint = "*"
[tool.ruff]
fixable = ["ALL"]
line-length = 120
select = [
"D", # pydocstyle
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"N", # pep8-naming
"PL", # Pylint
"UP", # pyupgrade
]
[tool.ruff.pydocstyle]
convention = "google"