-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
78 lines (70 loc) · 1.62 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "bioc_webstats"
version = "0.1.9"
description = "A web application to serve the content under www.bioconductor.org/packages/stats/"
authors = ["Robert Shear <rshear@ds.dfck.harvard.edu>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/bioconductor/bio-web-stats"
classifiers = [
"Framework :: Flask",
"Programming Language :: Python :: 3",
]
include = [
"pyproject.toml",
"installer_scripts/*",
]
[tool.poetry.dependencies]
python = "^3.12.3"
click = ">=7.0"
Flask = ">=2.3,<3.0"
Werkzeug = "*"
python-dotenv = "*"
Flask-SQLAlchemy = ">=3.1,<4.0"
psycopg2-binary = ">=2.9,<3.0"
SQLAlchemy = ">=2.0,<3.0"
pandas = "*"
pyarrow = "*"
s3fs = "*"
awswrangler = "*"
Flask-Migrate = ">=4.0,<5.0"
email-validator = ">=2.0,<3.0"
Flask-WTF = ">=1.2,<2.0"
WTForms = ">=3.1,<4.0"
gevent = "*"
supervisor = ">=4.2,<5.0"
Flask-Static-Digest = ">=0.4,<1.0"
Flask-Caching = ">=2.0,<3.0"
Flask-DebugToolbar = ">=0.13,<1.0"
environs = "*"
boto3 = "*"
ptvsd = "*"
waitress = "*"
pyyaml = "^6.0.2"
requests = "^2.32.3"
[tool.poetry.group.dev.dependencies]
factory-boy = ">=3.3,<4.0"
pytest = ">=7.4,<8.0"
pytest-cov = ">=4.1,<5.0"
WebTest = ">=3.0,<4.0"
decouple = "*"
flake8 = "*"
isort = "*"
pep8-naming = "*"
pytest-playwright = "*"
fastparquet = "*"
[tool.coverage.run]
branch = true
source = ["bioc_webstats"]
[tool.flake8]
max-line-length = 120
exclude = ["migrations/*", "etl/*"]
max-complexity = 18
[tool.isort]
profile = "black"
skip_glob = ["migrations/*"]
[tool.pytest.ini_options]
testpaths = ["tests"]