-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (33 loc) · 956 Bytes
/
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
[tool.poetry]
name = "pyxplr"
version = "0.4.14"
description = "Python package that provides some basic data information for EDA!"
authors = ["Braden Tam", "Furqan Khan", "Serg Pokrovskyy", "Yu Fang"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/UBC-MDS/pyxplr"
repository = "https://github.com/UBC-MDS/pyxplr"
documentation = 'https://pyxplr.readthedocs.io'
[tool.semantic_release]
version_variable = "pyxplr/__init__.py:__version__"
version_source = "commit"
upload_to_pypi = "false"
patch_without_tag = "true"
[tool.poetry.dependencies]
python = "^3.7"
pandas = "*"
numpy = "^1.18.1"
altair = "^3.2.0"
vega_datasets = "^0.8.0"
flake8 = "^3.7.9"
[tool.poetry.dev-dependencies]
sphinx = "^2.4.3"
sphinxcontrib-napoleon = "^0.7"
pytest = "^5.3.5"
pytest-cov = "^2.8.1"
flake8 = "^3.7.9"
vega_datasets = "^0.8.0"
python-semantic-release = "^4.10.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"