-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 848 Bytes
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 848 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[project]
name = "basic-pp"
version = "0.0.0"
authors = [
{ name="R A Veeraragavan", email="veeracoder123@gmail.com" },
]
description = "a simple language for begginers."
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"pdoc3>=0.11.6",
"pytest>=9.0.3",
"rich>=15.0.0",
"zensical>=0.0.43",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
[project.urls]
Homepage = "https://github.com/veeracoder508/e2eeftp"
Issues = "https://github.com/veeracoder508/e2eeftp/issues"
[tool.uv.workspace]
members = [
".",
".",
]
[tool.uv.sources]
basic-pp = { workspace = true }
[dependency-groups]
dev = [
"basic-pp",
]
[project.scripts]
bpp = "basicpp.cli:cli"
[tool.setuptools.packages.find]
where = ["src"]