-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 915 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 915 Bytes
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
[project]
name = "sith"
version = "1.0.0"
description = "Stretched Intramolecular Tension via Hypersurfaces"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Hits_mbm", email = "daniel.sucerquia@h-its.org" },
{ name = "Hits_mbm", email = "mikaela.farrugia@h-its.org" }
]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent"
]
dependencies = [
"ase",
"numpy",
"matplotlib",
"sphinx-rtd-theme"
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
# Include package data if any (setup.cfg had include_package_data=True)
# You can add specific patterns here if needed.
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
sith = "sith.cli.main:main"