-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1.04 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "peppermint-lang"
version = "0.4.0a2"
description = "A pipe-first language for data and ML work, running on top of Python"
readme = "README.md"
license = "MIT"
authors = [{ name = "Chayapatr (Pub) Archiwaranguprok", email = "pub@mit.edu" }]
requires-python = ">=3.11"
dependencies = []
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
]
[project.optional-dependencies]
data = ["pandas"]
ml = ["pandas", "scikit-learn", "umap-learn", "openai", "anthropic"]
viz = ["pandas", "matplotlib", "seaborn"]
lsp = ["pygls"]
all = [
"pandas",
"scikit-learn",
"umap-learn",
"openai",
"anthropic",
"matplotlib",
"seaborn",
"pygls",
]
[project.urls]
Repository = "https://github.com/chayapatr/peppermint"
[project.scripts]
pep = "peppermint.__main__:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["peppermint*"]