-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.34 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
46
47
48
49
50
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "panda-helper"
version = "0.1.1"
dependencies = [
"beautifulsoup4>=4.12.2",
"numpy>=1.26.0",
"pandas>=2.1.1",
"scipy>=1.11.2",
"tabulate==0.9.0",
]
requires-python = ">=3.9"
authors = [
{name = "Ray310", email = "ray310@pm.me"},
]
readme = "README.md"
description = "Data profiler for Pandas"
keywords = ["data-profiling", "data-profiling-utility", "data-analysis"]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
]
[project.urls]
Homepage = "https://ray310.github.io/Panda-Helper/"
Repository = "https://github.com/ray310/Panda-Helper"
Issues = "https://github.com/ray310/Panda-Helper/issues"
[project.optional-dependencies]
test = ["pytest>=7.4", "pylint>=3.0"]
[tool.ruff]
extend-include = ["*.ipynb"]
[tool.ruff.lint]
select = ["D", "F", "B"] # pydocstyle, pyflakes, flake8-bugbear
[tool.ruff.lint.pydocstyle]
convention = "google"