forked from spacepy/spacepy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (60 loc) · 2.23 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools", "wheel",]
build-backend = "setuptools.build_meta"
[project]
name = "spacepy"
version = "0.7.0a0"
description = "SpacePy: Tools for Space Science Applications"
readme = "README.md"
requires-python = ">=3.7"
license = { "file" = "LICENSE.md" }
authors = [{ "name" = "SpacePy team", "email" = "[email protected]" }]
maintainers = [
{"name" = "Steve Morley", "email" = "[email protected]"},
{"name" = "Dan Welling", "email" = "[email protected]"},
{"name" = "Brian Larsen", "email" = "[email protected]"},
{"name" = "Jon Niehof", "email" = "[email protected]"},
]
keywords = ["magnetosphere","plasma","physics","space","solar.wind","space.weather","magnetohydrodynamics"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Python Software Foundation License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: C",
"Programming Language :: Fortran",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules"
]
urls = { "homepage" = "https://spacepy.github.io/", "repository" = "https://github.com/spacepy/spacepy.git" }
dependencies = [
"numpy>=1.15.1",
"scipy>=1.0",
"matplotlib>=3.1",
"h5py>=2.10",
"python_dateutil>=2.5",
]
[tool.distutils.bdist_wheel]
py-limited-api = "cp37"
[tool.setuptools]
packages = ["spacepy", "spacepy.irbempy", "spacepy.pycdf",
"spacepy.plot", "spacepy.pybats", "spacepy.toolbox", "spacepy.ctrans",
"spacepy.data", "spacepy.data.LANLstar", "spacepy.data.TS07D.TAIL_PAR",
# Not even a namespace package, but have to specify it here so it can
# be in MANIFEST.in
"spacepy.libspacepy",
]
zip-safe = false
[tool.setuptools.package-data]
"spacepy.data" = ["*.*"]
"spacepy.data.LANLstar" = ["*"]
"spacepy.data.TS07D.TAIL_PAR" = ["*"]