-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
96 lines (88 loc) · 2.8 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[tool.poetry]
name = "bolster"
version = "0.3.0"
description = "Bolster's Brain, you've been warned"
authors = ["Andrew Bolster <[email protected]>"]
readme = "README.rst"
homepage = "https://github.com/andrewbolster/bolster"
repository = "https://github.com/andrewbolster/bolster"
documentation = "https://bolster.readthedocs.io"
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
[tool.poetry.dependencies]
python = ">=3.8.0,<3.12"
click = "^8.0.1"
click-log = ">=0.3.2,<0.5.0"
psycopg2-binary = "^2.9.1"
tqdm = "^4.62.1"
bs4 = ">=0.0.1,<0.0.3"
requests = "^2.26.0"
numpy = "^1.21.2"
pandas = ">=1.3.2,<3.0.0"
scipy = "^1.7.1"
boto3 = "^1.18.29"
requests-cache = ">=0.9.3,<1.3.0"
openpyxl = "^3.0.9"
Sphinx = { version = "7.1.2", optional = true }
sphinx-click = { version = "6.0.0", optional = true }
sphinx-issues = { version = "4.1.0", optional = true }
nbsphinx = { version = ">=0.8.8,<0.10.0", optional = true }
sphinx-rtd-theme = { version = "3.0.2", optional = true }
sphinx-autodoc-typehints = { version = "2.0.1", optional = true }
autoapi = { version = "2.0.1", optional = true }
sphinx-autoapi = { version = "3.5.0", optional = true }
sphinxcontrib-apidoc = { version = "0.5.0", optional = true }
sphinx-github-changelog = { version = "^1.2.0", optional = true }
setuptools = ">=67.1,<76.0"
xlrd = "^2.0.1"
lxml = "^5.0.0"
# urllib3 2.0 is not compatible with poetry-export-plugin
# https://github.com/python-poetry/poetry-plugin-export/issues/239
urllib3 = ">=1.26,<2"
waybackpy = "^3.0.6"
[tool.poetry.scripts]
bolster = "bolster.cli:main"
[tool.poetry.urls]
Changelog = "https://github.com/andrewbolster/bolster/releases"
[tool.poetry.dev-dependencies]
pip = "25.0.1"
bump2version = "1.0.1"
wheel = "0.45.1"
watchdog = "4.0.2"
flake8 = "5.0.4"
tox = "4.24.2"
coverage = "7.6.1"
twine = "6.1.0"
pytest = "8.3.5"
pytest-cov = "5.0.0"
nox-poetry = "^1.1.0"
nox = "^2025.2.9"
flake8-annotations = "^2.9.1"
[tool.poetry.extras]
docs = ["Sphinx", "sphinx-click", "sphinx-issues", "nbsphinx", "sphinx-rtd-theme",
"sphinx-autodoc-typehints", "sphinx-autoapi", "autoapi", "sphinxcontrib-apidoc",
"sphinx-github-changelog"
]
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.2"
nbmake = "^1.5.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = "src"
addopts = [
"--import-mode=importlib",
"--doctest-modules",
"--ignore=noxfile.py",
"--ignore=notebooks"
]