-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (42 loc) · 1.2 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
45
[tool.poetry]
name = "pydit-jceresearch"
readme="README.md"
packages = [
{ include = "pydit" }
]
version = "0.1.10"
description = "Data cleansing tools for Internal Auditors"
authors = ["jceresearch <[email protected]>"]
keywords=["internal audit", "munging", "cleansing", "audit","wrangling","pandas"]
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License"
]
license = "MIT"
documentation="https://pydit.readthedocs.io/en/latest/"
[tool.poetry.dependencies]
python="^3.12.7"
numpy="^1.25.2"
openpyxl="^3.1.2"
pandas="^2.0.3"
matplotlib="^3.8.0"
[tool.poetry.dev-dependencies]
pydata-sphinx-theme="^0.13.3"
pytest="^7.4.0"
pytest-cov="^4.1.0"
pytest-cover="^3.0.0"
pytest-coverage="^0.0"
coverage="^7.3.0"
Sphinx="^6.2.1"
sphinx-book-theme="^1.0.1"
sphinxcontrib-applehelp="^1.0.7"
sphinxcontrib-devhelp="^1.0.5"
sphinxcontrib-htmlhelp="^2.0.4"
sphinxcontrib-jsmath="^1.0.1"
sphinxcontrib-qthelp="^1.0.6"
sphinxcontrib-serializinghtml="^1.1.8"
myst-parser="^2.0.0"
[build-system]
requires = ["poetry","poetry-core","poetry-plugin-export","setuptools","myst-parser>=2.0.0","black"]
build-backend = "poetry.core.masonry.api"