-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.24 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (38 loc) · 1.24 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "pytector"
version = "0.5.0"
description = "Python reconstruction of J. Angelier's TENSOR palaeostress inversion program (TENSOR 5.45, jan91)"
readme = "README.md"
requires-python = ">=3.8"
# Table form rather than the PEP 639 SPDX string: that spelling needs
# setuptools 77 or newer, and this builds against 61.
license = { text = "MIT" }
authors = [{ name = "Chi-Hsiu Pang" }]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy",
"scipy",
"matplotlib",
"PyQt5",
]
# Reading a RESULTS.xlsx needs openpyxl. The csv beside it needs nothing,
# so this stays optional: the xlsx exists because Excel damages a csv on
# open (9-1 becomes a date), not because the program needs a second format.
[project.optional-dependencies]
excel = ["openpyxl"]
[project.urls]
Repository = "https://github.com/FormosaRes/pyTECTOR"
# pip install . && pytector starts the desktop interface
[project.gui-scripts]
pytector = "pyTECTOR:main"
[tool.setuptools]
packages = ["pytector"]
py-modules = ["pyTECTOR"]