-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.11 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
[tool.poetry]
name = "aridanalysis"
version = "0.4.2"
description = "Python package for Inferential Regression and EDA analysis."
authors = ["SantiagoRugelesSch <ansarusc@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/UBC-MDS/aridanalysis_py"
repository = "https://github.com/UBC-MDS/aridanalysis_py"
documentation = "https://aridanalysis.readthedocs.io/en/latest/"
[tool.poetry.dependencies]
python = "^3.7"
pandas = "^1.2.2"
scikit-learn = "^0.24.1"
altair = "^4.1.0"
seaborn = "^0.11.1"
statsmodels = "^0.12.2"
vega-datasets = "^0.9.0"
pytest = "^6.2.2"
[tool.poetry.dev-dependencies]
Sphinx = "^3.5.1"
sphinxcontrib-napoleon = "^0.7"
pytest-cov = "^2.11.1"
codecov = "^2.1.11"
flake8 = "^3.8.4"
python-semantic-release = "^7.15.0"
[tool.semantic_release]
version_variable = "aridanalysis/__init__.py:__version__"
version_source = "commit"
upload_to_pypi = "false"
patch_without_tag = "true"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::UserWarning",
"ignore::DeprecationWarning"
]