-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (38 loc) · 1.36 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
[tool.poetry]
name = "bccovideda"
version = "1.1.0"
description = "A package to download BC covid data and create simple EDA"
authors = ["MDS 2021 DSCI 524 Group 25"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/UBC-MDS/bccovideda"
documentation = 'https://bccovideda.readthedocs.io'
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.27.1"
pandas = "^1.3.5"
altair = "^4.2.0"
altair-saver = "^0.5.0"
ipykernel = "^6.7.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
jupyter = "^1.0.0"
codecov = "^2.1.12"
Sphinx = "^4.4.0"
python-semantic-release = "^7.24.0"
myst-nb = "^0.13.1"
sphinx-autoapi = "^1.8.4"
sphinx-rtd-theme = "^1.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_variable = "pyproject.toml:version" # version location
branch = "main" # branch to make releases of
changelog_file = "CHANGELOG.md" # changelog file
build_command = "pip install poetry && poetry build" # build dists
dist_path = "dist/" # where to put dists
upload_to_pypi = false # don't auto-upload to PyPI
remove_dist = false # don't remove dists
patch_without_tag = "true" # always bump version on CD, even without angular commit (default is patch)