-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from ttngu207/main
- Loading branch information
Showing
6 changed files
with
111 additions
and
54 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Changelog | ||
|
||
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention. | ||
|
||
## [0.5.0] - 2024-11-08 | ||
|
||
### Added | ||
|
||
- Started CHANGELOG | ||
- Install with `pyproject.toml` | ||
|
||
|
||
[0.0.0]: https://github.com/datajoint-company/datajoint-utilities/releases/tag/0.5.0 |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"""Package metadata.""" | ||
|
||
__version__ = "0.4.0" | ||
__version__ = "0.5.0" |
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,61 @@ | ||
[build-system] | ||
requires = ["setuptools>=62.0", "wheel>=0.37"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "datajoint-utilities" | ||
version = "0.5.0" | ||
description = "A general purpose repository containing all generic tools/utilities surrounding the DataJoint ecosystem" | ||
requires-python = ">=3.9, <3.12" | ||
license = { file = "LICENSE" } | ||
authors = [{ name = "DataJoint", email = "[email protected]" }] | ||
keywords = ["datajoint", "workflow"] | ||
classifiers = [ | ||
"Operating System :: OS Independent", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
] | ||
dependencies = [ | ||
"datajoint>=0.14.3", | ||
"termcolor", | ||
"slack-sdk", | ||
"python-dotenv", | ||
"boto3", | ||
"requests", | ||
] | ||
|
||
[project.scripts] | ||
tmplcfg = "datajoint_utilities.cmdline.tmplcfg:cli" | ||
|
||
[project.urls] | ||
Source = "https://github.com/datajoint-company/datajoint-utilities" | ||
DataJoint = "https://datajoint.com/docs" | ||
|
||
[tool.setuptools] | ||
package-data = { "*" = ["*.pyi", "py.typed"] } | ||
|
||
[tool.pytest.ini_options] | ||
minversion = "6.0" | ||
addopts = "-rA" | ||
testpaths = ["tests"] | ||
|
||
[tool.black] | ||
line-length = 88 | ||
target-version = ["py310"] | ||
color = false | ||
exclude = ''' | ||
/( | ||
\.git | ||
| \.venv | ||
| _build | ||
| example_data | ||
| build | ||
| dist | ||
| env | ||
| venv | ||
)/ | ||
''' | ||
|
||
[tool.isort] | ||
profile = "black" |
This file was deleted.
Oops, something went wrong.