Skip to content

Commit

Permalink
Publish v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
david-yz-liu committed Aug 7, 2023
1 parent f7d4b3b commit 3669119
Showing 1 changed file with 22 additions and 13 deletions.
35 changes: 22 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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="hannah.li97@gmail.com"},
{ name="Anis Singh", email="anisnylesingh@gmail.com" },
]
maintainers = [
{ name = "David Liu", email="david@cs.toronto.edu" }
]
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 = [
Expand All @@ -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']
Expand Down

0 comments on commit 3669119

Please sign in to comment.