-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (91 loc) · 2.76 KB
/
pyproject.toml
File metadata and controls
94 lines (91 loc) · 2.76 KB
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
[tool.poetry]
name = "DataAnalysisToolkit"
version = "1.2.3"
description = "The DataAnalysisToolkit project is a Python-based data analysis tool designed to streamline various data analysis tasks. It allows users to load data from CSV files and perform operations such as statistical calculations, outlier detection, data cleaning, and visualization."
authors = ["Thaddeus Thomas <thaddeus.r.thomas@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/thomasthaddeus/dataanalysistoolkit"
repository = "https://github.com/thomasthaddeus/dataanalysistoolkit"
documentation = "https://dataanalysistoolkit.readthedocs.io/en/latest/"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Jupyter",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Education",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Information Analysis"
]
keywords = ["data analysis", "CSV", "statistics", "data cleaning", "data visualization"]
include = [ "tests/data/*.csv", "src/dataanalysistoolkit/.conf/*.json"]
[tool.poetry.dependencies]
python = "^3.9"
# dataanalysistoolkit = {path = "../src/dataanalysistoolkit/", develop = true}
certifi = "2024.7.4"
charset-normalizer = "3.3.2"
click = "8.1.7"
colorama = "0.4.6"
contourpy = "1.2.1"
cycler = "0.12.1"
docutils = "0.21.2"
fonttools = "4.60.2"
greenlet = "3.0.3"
idna = "3.10"
importlib_metadata = "8.4.0"
joblib = "1.4.2"
keyring = "25.2.1"
kiwisolver = "1.4.5"
markdown-it-py = "3.0.0"
matplotlib = "3.9.4"
mdurl = "0.1.2"
more-itertools = "10.8.0"
nh3 = "0.2.18"
nltk = "3.9"
numpy = "2.0.1"
packaging = "24.1"
pandas = "2.3.3"
pillow = "10.4.0"
pkginfo = "1.11.1"
Pygments = "2.20.0"
pyparsing = "3.1.2"
pyproject_hooks = "1.1.0"
python-dateutil = "2.9.0.post0"
pytz = "2024.1"
pywin32-ctypes = "0.2.2"
readme_renderer = "44.0"
regex = "2024.7.24"
requests = "2.32.3"
requests-toolbelt = "1.0.0"
rfc3986 = "2.0.0"
rich = "13.7.1"
scikit-learn = "1.5.1"
scipy = "1.13.1"
seaborn = "0.13.2"
six = "1.16.0"
SQLAlchemy = "2.0.31"
threadpoolctl = "3.5.0"
tqdm = "4.66.4"
typing_extensions = "4.12.2"
tzdata = "2026.1"
urllib3 = "2.6.3"
zipp = "3.19.2"
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-mock = "*"
check-manifest = "*"
myst-parser = "*"
sphinx = "*"
nbsphinx = "*"
sphinx-rtd-theme = "*"
sphinxcontrib-websupport = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"