-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (38 loc) · 1.24 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ProjectAssessment"
version = "0.3.8"
description = "Package to compute the Project-Based Assessment estimates of student and rubric proficiency."
license = "MIT"
authors = [
{ name="Ben Smith", email="[email protected]" },
]
maintainers = [
{ name="Ben Smith", email="[email protected]" },
]
readme = "README.md"
homepage = "https://github.com/tazzben/project-based-assessment"
repository = "https://github.com/tazzben/project-based-assessment"
keywords = ["Assessment", "Projects", "Statistics", "Education", "Bootstrap"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
]
requires-python = ">=3.9"
dependencies = [
"numpy>=1.21.0",
"pandas>=1.3.0",
"tqdm>=4.26.0",
"numba>=0.54.0",
"scipy>=1.4.0",
]
[project.urls]
"Homepage" = "https://github.com/tazzben/project-based-assessment"
"Bug Tracker" = "https://github.com/tazzben/project-based-assessment/issues"