-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (46 loc) · 1.41 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "iguape"
requires-python = ">=3.10"
authors = [
{name = "João Luis Biondo Neto", email = "[email protected]"},
{name = "Junior Cintra Mauricio"},
{name = "Cristiane Barbieri Rodella"},
]
maintainers = [
{name = "João Luis Biondo Neto", email = "[email protected]"}
]
description = "Iguape is a Graphical User Interface for X-ray diffraction in situ experiments at Paineira beamline (LNLS/CNPEM)."
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["X-ray diffraction", 'in situ experiments', 'XRD synchrotron']
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry"
]
dependencies = [
"PyQt5 == 5.15.10",
"numpy == 1.26.4",
"pandas == 2.2.2",
"scipy == 1.13.1",
"matplotlib == 3.8.4",
"lmfit == 1.3.1",
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/cnpem/Iguape"
[tool.setuptools.dynamic]
version = { attr = "Iguape.__version__"}
[project.scripts]
iguape = "Iguape.launcher:main"
[tool.setuptools]
packages = ["Iguape"]
[tool.setuptools.package-data]
"Iguape" = ["Icons/*", "GUI/*"]