forked from lnls-ima/insertion-devices
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 1.39 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
[build-system]
requires = ["setuptools>=60"]
build-backend = "setuptools.build_meta"
[project]
name = "imaids"
authors = [{ name = "lnls-ima" },
{ name = "lnls-ids" }
]
maintainers = [
{name = "Gabriel Rezende da Ascenção", email = "gabriel.ascencao@lnls.br"},
{name = "Jefferson Barros Vieira", email = "jefferson.vieira@lnls.br"},
{name = "Sergio Augusto Lordano Luiz", email = "sergio.lordano@lnls.br"},
]
description = "Insertion Devices Package"
readme = "README.md"
dynamic = ["version", "dependencies"]
requires-python = ">=3.9"
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
]
keywords = ["SIRIUS", "python", "Accelerator Physics", "Insertion Devices"]
license = "MIT"
license-files= [ "LICENSE", ]
[project.urls]
Homepage = "https://github.com/lnls-ids/insertion-devices"
Download = "https://github.com/lnls-ids/insertion-devices"
Repository = "https://github.com/lnls-ids/insertion-devices.git"
Issues = "https://github.com/lnls-ids/insertion-devices/issues"
[project.optional-dependencies]
tests = ["nose"]
# --- Setuptools specific configurations ---
[tool.setuptools]
packages = ["imaids"]
include-package-data = true
[tool.setuptools.dynamic]
version = { file = "VERSION" }
dependencies = { file = "requirements.txt" }
[tool.setuptools.package-data]
imaids = ["VERSION", "presets/*"]