-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename package from conda-join to unidep (#8)
* Rename package from conda-join to unidep * Rename files * Update README.md * More renames * Update README.md * Requirements -> Dependency --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
9ed3606
commit e0e30c0
Showing
6 changed files
with
42 additions
and
43 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 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 |
---|---|---|
|
@@ -3,7 +3,7 @@ requires = ["setuptools>=42", "wheel"] | |
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "conda-join" | ||
name = "unidep" | ||
description = "Unified Conda and Pip requirements management." | ||
dynamic = ["version"] | ||
authors = [{ name = "Bas Nijholt", email = "[email protected]" }] | ||
|
@@ -15,27 +15,26 @@ file = "README.md" | |
content-type = "text/markdown" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/basnijholt/conda-join" | ||
Homepage = "https://github.com/basnijholt/unidep" | ||
|
||
[project.optional-dependencies] | ||
test = ["pytest", "pre-commit", "coverage", "pytest-cov", "pytest-mock"] | ||
|
||
[project.scripts] | ||
conda-join = "conda_join:main" | ||
conda_join = "conda_join:main" | ||
unidep = "unidep:main" | ||
|
||
[project.entry-points."setuptools.finalize_distribution_options"] | ||
conda-join = "conda_join:setuptools_finalizer" | ||
unidep = "unidep:setuptools_finalizer" | ||
|
||
[tool.setuptools] | ||
py-modules = ["conda_join"] | ||
py-modules = ["unidep"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "conda_join.__version__"} | ||
version = {attr = "unidep.__version__"} | ||
|
||
[tool.pytest.ini_options] | ||
addopts = """ | ||
--cov=conda_join | ||
--cov=unidep | ||
--cov-report term | ||
--cov-report html | ||
--cov-fail-under=95 | ||
|
@@ -88,6 +87,6 @@ tag = true | |
tag_name = "v{new_version}" | ||
|
||
[[tool.bumpversion.files]] | ||
filename = "conda_join.py" | ||
filename = "unidep.py" | ||
replace = '__version__ = "{new_version}"' | ||
search = '__version__ = "{current_version}"' |
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 +1 @@ | ||
"""Tests for the ``conda_join`` package.""" | ||
"""Tests for the ``unidep`` package.""" |
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