-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (44 loc) · 1 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
45
46
47
[project]
name = "pysesd"
version = "0.1.0"
description = "Add a short description here"
authors = [
{ name = "Xiangzhuang Shen", email = "[email protected]" }
]
dependencies = [
"numpy~=1.24.3",
"scipy~=1.10.1",
"matplotlib~=3.7.1",
"pandas~=2.0.2",
"statsmodels~=0.14.0",
]
readme = "README.md"
requires-python = ">= 3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"setuptools~=67.8.0",
"ipython>=8.12.2",
"mkdocs-material~=9.1.16",
"mkdocs-material-extensions~=1.1.1",
"mkdocstrings~=0.22.0",
"mkdocs~=1.4.3",
"mkdocs-bibtex~=2.9.0",
"pre-commit~=3.3.3",
"isort~=5.12.0",
"flake8~=5.0.4",
"black~=23.3.0",
"mypy~=1.4.0",
"pandas-stubs~=2.0.2.230605",
"pytest~=7.3.2",
"hypothesis~=6.79.1",
"pytest-cov>=4.1.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[[tool.rye.sources]]
name = "tsinghua"
url = "https://pypi.tuna.tsinghua.edu.cn/simple"