-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 874 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 874 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
[build-system]
requires = ['setuptools']
build-backend = "setuptools.build_meta"
[project]
name = "elinkapi"
version = "0.5.3"
authors = [
{ name="Neal Ensor", email="ensorn@osti.gov" },
{ name="Jacob Samar" }
]
description = "OSTI E-Link 2 API package"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"requests",
"pydantic",
"urllib3",
"requests_toolbelt"
]
[project.optional-dependencies]
development = ["twine", "build"]
[project.urls]
Homepage = "https://github.com/doecode/elinkapi"
Issues = "https://github.com/doecode/elinkapi/issues"
Changelog = "https://github.com/doecode/elinkapi/blob/main/CHANGELOG.md"
Examples = "https://github.com/doecode/elinkapi/tree/main/examples"