Skip to content

Commit

Permalink
Modify pyproject.toml to add optional dependencies, fix source distri…
Browse files Browse the repository at this point in the history
…bution and add documentation link
  • Loading branch information
sinhaharsh committed Apr 9, 2024
1 parent 23669f2 commit bfe37fe
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,20 @@ classifiers = [

[project.urls]
Homepage ='https://github.com/Open-Minds-Lab/mrQA'
Documentation = "https://open-minds-lab.github.io/mrQA/"

[project.scripts]
mrqa = "mrQA.cli:cli"
mrqa_monitor = "mrQA.monitor:cli"
mrqa_parallel = "mrQA.run_parallel:cli"
mrqa_subset = "mrQA.run_subset:cli"

[project.optional-dependencies]
test = [
"pytest~=7.1.2",
"hypothesis>=6.97.1",
"flake8",
"coverage"
]
[tool.hatch.build]
include = [
"mrQA/*.py",
Expand All @@ -59,10 +66,12 @@ version-file = "mrQA/_version.py"

[tool.hatch.build.targets.sdist]
include = [
"/mrQA",
]
"mrQA/*.py",
"mQA/resources/*",
"mrQA/tests/*",
"mrQA/tests/resources/*",]
exclude = [
"/.github",
"/docs",
"/.github",
"/docs",
]
strict-naming = false

0 comments on commit bfe37fe

Please sign in to comment.