forked from UBC-MDS/datascience_eda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (39 loc) · 1.14 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 = "datascience_eda"
version = "0.1.6"
description = "This package includes functions helping with common tasks during EDA stage of a data science project."
authors = ["Mai Le, Aditya Bhatraju,, Rahul Kuriyedath, Charles Suresh"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/UBC-MDS/datascience_eda"
repository = "https://github.com/UBC-MDS/datascience_eda"
documentation = "https://datascience_eda.readthedocs.io"
[tool.poetry.dependencies]
python = "^3.8"
pandas = "^1.2.2"
sklearn = "^0.0"
yellowbrick = "^1.3.post1"
spacy = "^3.0.3"
seaborn = "^0.11.1"
ipython = "^7.21.0"
textblob = "^0.15.3"
pytest = "^6.2.2"
wordcloud = "^1.8.1"
jupyter = "^1.0.0"
altair = "^4.1.0"
nltk = "^3.5"
[tool.poetry.dev-dependencies]
pytest-cov = "^2.11.1"
codecov = "^2.1.11"
python-semantic-release = "^7.15.0"
flake8 = "^3.8.4"
Sphinx = "^3.5.1"
sphinxcontrib-napoleon = "^0.7"
[tool.semantic_release]
version_variable = "datascience_eda/__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"