-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (39 loc) · 1.48 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
41
42
43
44
# Setup file to instantiate installation of package from command line. setup.py is deprecated
# Update file with new version every time it is updated:
# - version="1.0.0" -> version="1.0.1" for a small change that patches bugs that do not alter compatability
# - version="1.0.0" -> version="1.1.0" for a minor change that adds new features but does not break compatability
# - version="1.0.0" -> version="2.0.0" for a major change that breaks compatability with the previous version
[build-system]
requires = ["setuptools>=72.1.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "feh_io"
version = "1.0.0"
description = "A package to read and write data from DYNASIM FEH files"
authors = [{name = "Thiya Poongundranar", email = "[email protected]"},
{name = "Jameson Carter", email = "[email protected]" }]
readme = "README.md"
requires-python = '>=3.12.4'
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"colorama >= 0.4.6",
"iniconfig >= 2.0.0",
"numpy >= 2.0.1",
"packaging >= 24.1",
"pandas >= 2.2.2",
"pluggy >= 1.5.0",
"pyarrow >= 17.0.0",
"python-dateutil >= 2.9.0.post0",
"pytz >= 2024.1",
"six >= 1.16.0",
"tzdata >= 2024.1"
]
[project.urls]
Homepage = "https://github.com/UI-Research/RreadFEH/feh_io"