-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f7d4b3b
commit 3669119
Showing
1 changed file
with
22 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,31 +4,31 @@ build-backend = "hatchling.build" | |
|
||
[project] | ||
name = "markus_exam_matcher" | ||
version = "0.0.4" | ||
dependencies = [ | ||
"urllib3==1.26.6", | ||
"opencv-python==4.5.5.62", | ||
"torch==2.0.0", | ||
"torchvision==0.15.1", | ||
"Pillow==9.3.0", | ||
"numpy==1.24.3", | ||
"scipy==1.10.1" | ||
] | ||
version = "0.1.0" | ||
description = "A package for matching students to test papers in MarkUs" | ||
readme = "README.md" | ||
authors = [ | ||
{ name="Hannah Li", email="[email protected]"}, | ||
{ name="Anis Singh", email="[email protected]" }, | ||
] | ||
maintainers = [ | ||
{ name = "David Liu", email="[email protected]" } | ||
] | ||
description = "Used to detect handwritten characters on scanned exam papers." | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
] | ||
dependencies = [ | ||
"urllib3==1.26.6", | ||
"opencv-python==4.5.5.62", | ||
"torch==2.0.0", | ||
"torchvision==0.15.1", | ||
"Pillow==9.3.0", | ||
"numpy==1.24.3", | ||
"scipy==1.10.1" | ||
] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
|
@@ -40,6 +40,15 @@ dev = [ | |
"Bug Tracker" = "https://github.com/MarkUsProject/markus-exam-matcher/issues" | ||
|
||
|
||
[tool.hatch.build.targets.sdist] | ||
exclude = [ | ||
"/.github", | ||
"/examples", | ||
] | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = ["src/markus_exam_matcher"] | ||
|
||
[tool.black] | ||
line-length = 100 | ||
target-version = ['py38'] | ||
|