-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
38 lines (33 loc) · 1012 Bytes
/
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "geniapi"
dynamic = ["version"]
dependencies = [
"requests>=2.32.3",
]
requires-python = ">=3.10"
authors = [{ name = "Dmitry Bryndin" }]
description = "Python client library for the Geni.com public REST API"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["geni", "api", "client", "geni.com"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.4",
"types-requests>=2.32.0.20241016",
]
[project.urls]
Homepage = "https://github.com/bryndin/geni"
[tool.setuptools]
packages = ["geni", "geni.internal", "tests", "tests.internal", "tests.internal.fixtures", "examples"]
[tool.setuptools.dynamic]
version = { attr = "geni.version.__version__" }