-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
32 lines (28 loc) · 1.08 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
[project]
name = "das2py"
version = "2.3.0"
dependencies = [ "numpy", "lxml" ]
description = "An efficient space physics data client for python"
readme = "README.md"
requires-python = ">=2.7"
license = {file = "LICENSE"}
authors = [
{name = "C Piker", email = "[email protected]"}
]
keywords = ["space-physics", "magneosphere", "das2"]
[project.urls]
Homepage = "https://das2.org/das2py"
Repository = "https://github.com/das-developers/das2py"
# This does not work with top-level non-module python scripts. Instead we're
# expected to make a module named "verify" and point out it's main function
# here. That's okay I guess, but it gets very far from the shell-script roots
# of python and makes it harder to run scripts directly from the source tree
# as top-level programs, which is an long expected feature. For now the
# 'scripts=' line in setup.py is going to have to handle this one.
#[project.scripts]
#das_verify = "das_verify"
[build-system]
requires = [ "setuptools" ]
build-backend = "setuptools.build_meta"
[tools.setuptools]
packages = ["das2", "das2.pycdf", "das2.xsd"]