-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.07 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
48
49
50
[project]
name = "manifoldpy"
version = "1.1.2"
authors = [
{ name="Vincent Luczkow", email="[email protected]" },
]
description = "Python tools for working with Manifold Markets"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"attrs>=22.1.0",
"matplotlib>=3.5.2",
"numpy>=1.23.1",
"pandas>=1.5.1",
"requests>=2.31.0",
"scipy>=1.9.3"
]
[project.optional-dependencies]
dev = [
"coverage>=6.5.0",
"mypy>=1.3.0",
"pytest>=7.1.2",
"pandas-stubs>=1.5.2",
"Sphinx>=5.3.0",
"sphinx_rtd_theme>=1.1.1",
"types-pytz>=2022.6.0.1",
"types-requests>=2.28.11.4",
"types-urllib3>=1.26.25.3"
]
[project.urls]
"Homepage" = "https://github.com/vluzko/manifoldpy"
"Bug Tracker" = "https://github.com/vluzko/manifoldpy/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"