-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
52 lines (45 loc) · 1.35 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "xrayweb/version.py"
version_scheme = "post-release"
[tool.setuptools.packages.find]
include = ["xrayweb"]
[project]
name = "xrayweb"
dynamic = ["version"]
requires-python = ">= 3.9"
description = 'Web interface for X-ray Properties of the elements'
readme = "README.md"
authors = [
{name = "Alex Nicolellis"},
{name = "Matthew Newville", email = "[email protected]"},
]
dependencies = [
"xraydb",
"sqlalchemy>=2",
"numpy",
"flask",
"plotly",
]
license = {file = "LICENSE"}
keywords = ["X-ray spectroscopy", "Physics"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Homepage = " https://github.com/xraypy/xrayweb"
Documentation = "https://github.com/xraypy/xrayweb"
Tracker = "https://github.com/xraypy/xrayweb/issues"
[project.optional-dependencies]
dev = ["build", "twine"]
all = ["xrayweb[dev]"]