forked from USEPA/ctx-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.13 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (43 loc) · 1.13 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
45
46
47
48
49
50
[project]
name = "ctx-python"
version = "0.0.1a12"
description = "A Python API client for US EPA's Computational Toxicology and Exposure APIs."
authors = [
{ name = "kaphillips", email = "phillips.katherine@epa.gov" }
]
requires-python = ">=3.14"
readme = "README.md"
license = "GPL-3.0-or-later"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Chemistry",
]
dependencies = [
"pandas>=3.0.3",
"python-dotenv>=1.2.2",
"requests>=2.34.2",
]
[project.urls]
Repository = "https://github.com/USEPA/ctx-python"
[project.scripts]
ctx_init = "ctxpy.command_line:main"
[tool.hatch.build.targets.sdist]
include = [
"src/ctxpy",
"README.md",
"LICENSE*"
]
[tool.hatch.build.targets.wheel]
packages = ["src/ctxpy"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ipython>=9.13.0",
]