forked from QuantEcon/QuantEcon.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (62 loc) · 1.44 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["flit_core >=3.5,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "quantecon"
authors = [{name = "QuantEcon Project", email = "admin@quantecon.org"}]
classifiers = [
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering',
]
keywords = [
'quantitative',
'economics'
]
dynamic = ["description", "version"]
requires-python = ">=3.7"
dependencies = [
'numba',
'numpy>=1.17.0',
'requests',
'scipy>=1.5.0',
'sympy',
]
[project.optional-dependencies]
testing = [
"pytest",
"coverage",
"flake8",
"numpy",
"scipy",
"pandas",
"numba",
"sympy",
]
[project.license]
file = "LICENSE"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://quantecon.org/quantecon-py/"
Documentation = "http://quanteconpy.readthedocs.org/en/latest/"
Funding = "https://quantecon.org"
Source = "https://github.com/quantecon/QuantEcon.py"
Tracker = "https://github.com/quantecon/QuantEcon.py/issues"
[tool.flit.module]
name = "quantecon"
[tool.flit.sdist]
exclude = [
".*", # Any hidden folders or files
"docs/",
"quantecon/tests/",
"quantecon/util/tests",
"Makefile",
"environment.yml",
"readthedocs.yml",
]