-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 1.03 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["pucgen"]
include-package-data = true
[tool.setuptools.package-data]
pucgen = ["*.png"]
[tool.setuptools.dynamic]
version = {attr = "pucgen.__version__"}
[project.urls]
homepage = "https://github.com/sfepy/pucgen"
[project]
name = "pucgen"
dynamic = ["version"]
license = {text = "MIT License"}
readme = "README.md"
description="PUCGen - Periodic Unit Cell Generator"
authors = [{name = "Vladimir Lukes", email = "vlukes@kme.zcu.cz"}]
requires-python = ">= 3.8"
dependencies = ["gmsh", "meshio", "scipy", "pyqt6"]
keywords = ["periodic mesh", "FEM"]
classifiers = [
"Development Status :: 3 - Alpha", # 3 - Alpha, 4 - Beta, 5 - Stable
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.scripts]
pucgen = "pucgen.pucgen:main"
pucgen-gui = "pucgen.pucgen_gui:main"