Skip to content

Commit

Permalink
Create README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rpmcginty committed Oct 6, 2023
1 parent 5306bc4 commit 91847b5
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 98 deletions.
26 changes: 0 additions & 26 deletions .github/ISSUE_TEMPLATE/bug-report.md

This file was deleted.

16 changes: 0 additions & 16 deletions .github/ISSUE_TEMPLATE/feature-request.md

This file was deleted.

42 changes: 0 additions & 42 deletions .github/PULL_REQUEST_TEMPLATE/default.md

This file was deleted.

9 changes: 0 additions & 9 deletions .github/PULL_REQUEST_TEMPLATE/simple.md

This file was deleted.

4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# aibs-informatics-test-resources
Python test utility package

fill in later with details
17 changes: 12 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,21 @@
# https://setuptools.pypa.io/en/latest/setuptools.html#building-and-distributing-packages-with-setuptools
# -----------------------------------------------------------------------------

[build-system]
requires = ["setuptools>=61", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
# [build-system]
# requires = ["setuptools>=61", "setuptools_scm[toml]>=6.2", "wheel"]
# build-backend = "setuptools.build_meta"
# [tool.setuptools_scm]

[tool.setuptools_scm]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

# -----------------------------------------------------------------------------
[project]
name = "aibs-informatics-test-resources"
version = "0.0.1"
description = "unit test resources for informatics packages"
dynamic = ["version"]

requires-python = ">=3.9"
dependencies = [
"black==22.3",
Expand All @@ -28,6 +32,9 @@ dependencies = [
[tool.setuptools.packages.find]
where = ["src"]

[tool.hatch.version]
path = "src/aibs_informatics_test_resources/__version__.py"


# -----------------------------------------------------------------------------
## Pyright Configurations
Expand Down
1 change: 1 addition & 0 deletions src/aibs_informatics_test_resources/__version__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.0.1"

0 comments on commit 91847b5

Please sign in to comment.