-
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.
build: use setuptools-git-versioning for versioning (#16)
- Loading branch information
1 parent
5006d22
commit 0f32bc7
Showing
9 changed files
with
43 additions
and
1,930 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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
"""CHIME database interface.""" | ||
|
||
__path__ = __import__("pkgutil").extend_path(__path__, __name__) |
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
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
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0.0", "wheel", "setuptools-git-versioning"] | ||
build-backed = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "chimedb.dataset" | ||
authors = [ | ||
{name = "Rick Nitsche for the CHIME Collaboration", email = "[email protected]"} | ||
] | ||
description = "CHIME dataset (comet) ORM" | ||
requires-python = ">=3.8" | ||
dynamic = ["readme", "version"] | ||
license = {file = "LICENSE"} | ||
dependencies = [ | ||
"chimedb @ git+https://github.com/chime-experiment/chimedb.git", | ||
"click", | ||
"peewee >= 3.10", | ||
] | ||
|
||
[project.scripts] | ||
dataset_utils = "chimedb.dataset.utils:cli" | ||
|
||
[project.optional-dependencies] | ||
test = [ | ||
"pytest >= 7.0" | ||
] | ||
|
||
[tool.setuptools.dynamic] | ||
readme = {file = ["README.md"], content-type = "text/markdown"} | ||
|
||
[tool.setuptools-git-versioning] | ||
enabled = true |
Oops, something went wrong.