-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (28 loc) · 792 Bytes
/
pyproject.toml
File metadata and controls
30 lines (28 loc) · 792 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ProdPack"
version = "0.1.1"
description = "An Efficiency and Productivity Analysis Package"
authors = [
{ name = "Dr Daoping Wang", email = "daopingwang@outlook.com" },
]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.6"
dependencies = [
"pulp>=2.6.0",
"numpy>=1.26.0",
"pandas>=1.3.5",
"DEAPack>=0.1.3",
]
[project.urls]
"Homepage" = "https://github.com/daopingw/ProdPack"
"Bug Tracker" = "https://github.com/daopingw/ProdPack/issues"