forked from rjmalves/idecomp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
56 lines (50 loc) · 1.14 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
44
45
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "idecomp"
dynamic = ["version"]
dependencies = [
"cfinterface>=1.8",
"numpy>=2.0",
"pandas>=2.2",
]
requires-python = ">= 3.10"
authors = [
{name = "Rogerio Alves", email = "rogerioalves.ee@gmail.com"},
{name = "Mariana Noel", email = "marianasimoesnoel@gmail.com"},
]
description = "idecomp"
readme = "README.md"
license = {file = "LICENSE.md"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"ruff",
"mypy",
"sphinx-rtd-theme",
"sphinx-gallery",
"sphinx",
"numpydoc",
"plotly",
"matplotlib",
]
[project.urls]
Documentation = "https://rjmalves.github.io/idecomp/"
Repository = "https://github.com/rjmalves/idecomp/"
[tool.hatch.version]
path = "idecomp/__init__.py"
[tool.hatch.build.targets.wheel]
include = [
"idecomp/",
]
[tool.ruff]
line-length = 80