forked from Julian-Hochhaus/LG4X-V2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (32 loc) · 1.18 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
# pyproject.toml
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name='LG4X-V2'
readme='README.md'
version = "2.4.3"
authors=[{name='Julian Hochhaus', email='[email protected]'}, {name='Julian Hochhaus', email='[email protected]'}]
license={file='LICENSE', name='MIT'}
description='A graphical user interface for X-ray photoemission spectroscopy (XPS) curve fitting analysis/ X-ray absorption spectroscopy (XAS) analysis. The curve fitting is done using the LMFIT and lmfitxps packages.'
[project.urls]
homepage='https://github.com/Julian-Hochhaus/lmfitxps'
documentation='https://lmfitxps.readthedocs.io/en/latest/'
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["lmfitxps"]
[project]
name = "your_package_name"
version = "0.1.0"
description = "A short description of your project"
authors = [{name = "Your Name", email = "[email protected]"}]
license = {text = "MIT"}
readme = "Readme.md"
requires-python = ">=3.7"
dependencies = [
"numpy>=1.21.0",
"pandas>=1.3.0",
"requests>=2.26.0",
]
[project.urls]
Homepage = "https://github.com/yourusername/your-repo"