-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 796 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (33 loc) · 796 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
[build-system]
requires = ["setuptools>=64.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gemstone-geode"
version = "0.2.0"
description = "GemStone Package Manager — a Cargo-inspired tool for GemStone/S"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [
{ name = "James Foster" }
]
dependencies = [
"click>=8.0",
"tomlkit>=0.12",
"packaging>=23.0",
]
[project.urls]
Homepage = "https://github.com/jgfoster/geode"
Repository = "https://github.com/jgfoster/geode"
Issues = "https://github.com/jgfoster/geode/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov",
]
[project.scripts]
geode = "geode.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]