-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
40 lines (32 loc) · 1.17 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
[project]
name = "pytabs"
authors = [{name = "Mitchell Tesch"}, {email = "[email protected]"}]
description = "A python wrapper for the CSi ETABS .NET API"
readme = "README.md"
requires-python = ">=3.10"
dependencies = ["pythonnet"]
license_file = {file = "LICENSE"}
keyword = ["engineering", "structural-engineering", "computational-design", "finite-element-analysis", "ETABS", "API"]
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dynamic = ["version"]
[project.optional-dependencies]
examples = ["pandas", "xlwings"]
[project.urls]
Homepage = "https://github.com/mitchell-tesch/pytabs"
Issues = "https://github.com/mitchell-tesch/pytabs/issues"
Repository = "https://github.com/mitchell-tesch/pytabs"
[tool.hatch.version]
path = "src/pytabs/__init__.py"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"