-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 1.09 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "modelsandbox"
version = "0.1.0"
description = "Framework for building complex, multi-layer, highly-parameterized mathematical models"
requires-python = ">=3.8"
license = {file = "LICENSE.rst"}
keywords=["python", "data", "model", "analysis", "builder"]
authors = [
{name = "Tariq Shihadah", email = "[email protected]"}
]
dependencies = [
"pandas",
"cerberus",
]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
dynamic = ["readme"]
[project.urls]
documentation = "https://github.com/tariqshihadah/modelsandbox"
repository = "https://github.com/tariqshihadah/modelsandbox"
[tool.setuptools.packages.find]
include = ["modelsandbox*"]
exclude = ["modelsandbox.tests*"]
[tool.setuptools.dynamic]
readme = {file = ["README.rst"]}