Skip to content

Commit 37dc529

Browse files
Create pyproject.toml for pystran package
Add initial project configuration for pystran.
1 parent 5f86da0 commit 37dc529

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

pyproject.toml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[build-system]
2+
requires = ["hatchling >= 1.26"]
3+
build-backend = "hatchling.build"
4+
5+
[project]
6+
name = "pystran"
7+
version = "0.0.1"
8+
authors = [
9+
{ name="Petr Krysl", email="pkrysl@ucsd.edu" },
10+
]
11+
description = "Python Structural Analysis package"
12+
readme = "README.md"
13+
requires-python = ">=3.9"
14+
classifiers = [
15+
"Programming Language :: Python :: 3",
16+
"Operating System :: OS Independent",
17+
]
18+
license = "MIT"
19+
license-files = ["LICEN[CS]E*"]
20+
21+
[project.urls]
22+
Homepage = "https://github.com/PetrKryslUCSD/pystran"
23+
Issues = "https://github.com/PetrKryslUCSD/pystran/issues"

0 commit comments

Comments
 (0)