-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (32 loc) · 1.29 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "brixs"
version = "0.9.7"
dependencies = ["numpy >= 1.15", "matplotlib>=3.4"]
requires-python = ">=3.7"
authors = [
{name = "Carlos William Galdino", email = "[email protected]"},
{name = "Thiago Mori", email = "[email protected]"},
{name = "Felipe Custodio", email = "[email protected]"},
{name = "Tulio Rocha", email = "[email protected]"}]
maintainers = [
{name = "Carlos William Galdino", email = "[email protected]"},
{name = "Felipe Custodio", email = "[email protected]"}]
description = "python package for processing and analysis of XAS and RIXS spectra"
readme = "README.rst"
license = {file = "LICENSE.txt"}
keywords = ["RIXS", "XAS", "X-ray", "Synchrotron", "beamline"]
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"]
[project.optional-dependencies]
model = ["lmfit", "scipy"]
crystal = ["pbcpy"]
full = ["lmfit", "scipy", "pbcpy"]
[project.urls]
Documentation = "https://cwgaldino.github.io/brixs"
Repository = "https://github.com/cwgaldino/brixs"
"Bug Tracker" = "https://github.com/cwgaldino/brixs/issues"