-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.22 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
[project]
name = "iamxed"
version = "1.1.0"
authors = [
{ name="Jiri Suchan", email="suchanjiri@yahoo.com" },
{ name="Jiri Janos", email="jiri.janos98@gmail.com" }
]
license = {file = 'LICENSE'}
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering'
]
description = "Independent Atom Model for X-ray and Electron Diffraction (XED) Calculator"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"numpy>=1.20",
"matplotlib>=3.9.0",
"scipy>=1.7.0",
"tqdm>=4.50.0"
]
[project.urls]
Homepage = "https://github.com/blevine37/IAM-XED"
Documentation = "https://github.com/blevine37/IAM-XED/blob/main/README.md"
Repository = "https://github.com/blevine37/IAM-XED.git"
Issues = "https://github.com/blevine37/IAM-XED/issues"
[project.scripts]
iamxed = "iamxed:main"
[project.optional-dependencies]
test = [
"pytest>=7.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
#[tool.hatch.build.targets.sdist] # here we exclude files from download I think, promdens uses: exclude = ["supplementary"]
#exclude = ["ESF", "XSF"]