-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (24 loc) · 819 Bytes
/
pyproject.toml
File metadata and controls
29 lines (24 loc) · 819 Bytes
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
[project]
name = "dfpeek"
version = "0.1.9"
description = "Peek into a dataframe from the command line"
authors = [{ name="Dylan Walker", email="dylan.travis.walker@gmail.com" }]
readme = "README.md"
license = {text = "MIT License"}
dependencies = ["pandas"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.urls]
Homepage = "https://github.com/dylanwalker/dfpeek"
Repository = "https://github.com/dylanwalker/dfpeek"
Issues = "https://github.com/dylanwalker/dfpeek/issues"
[project.optional-dependencies]
parquet = ["pyarrow"]
excel = ["openpyxl"]
[project.scripts]
dfpeek = "dfpeek.__main__:main"