-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 1.05 KB
/
Copy pathpyproject.toml
File metadata and controls
40 lines (34 loc) · 1.05 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hapiclient"
version = "0.3.3"
authors = [
{ name = "Bob Weigel", email = "[email protected]" }
]
description = "Client for Heliophysics API servers"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE.txt" }
requires-python = ">=3.8"
dependencies = [
"joblib",
"urllib3",
"numpy>=1.14.3; python_version >= '3.6'",
"pandas>=0.23; python_version >= '3.6'",
"isodate>=0.6.0; python_version >= '3.6'",
"numpy<1.17; python_version == '3.5'",
"pandas<1.0; python_version == '3.5'",
"isodate>=0.6.0,<0.7.0; python_version == '3.5'",
"kiwisolver<=1.2; python_version == '3.6'",
]
[project.optional-dependencies]
dev = [
"deepdiff",
"pytest; python_version >= '3.6'",
"pytest<5.0.0; python_version == '3.5'",
]
[project.urls]
Homepage = "http://pypi.python.org/pypi/hapiclient/"
[tool.setuptools.packages.find]
where = ["."]