curies 0.9.2__tar.gz → 0.9.2.dev0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. {curies-0.9.2/src/curies.egg-info → curies-0.9.2.dev0}/PKG-INFO +1 -1
  2. {curies-0.9.2 → curies-0.9.2.dev0}/pyproject.toml +4 -4
  3. {curies-0.9.2 → curies-0.9.2.dev0}/src/curies/version.py +1 -1
  4. {curies-0.9.2 → curies-0.9.2.dev0/src/curies.egg-info}/PKG-INFO +1 -1
  5. {curies-0.9.2 → curies-0.9.2.dev0}/LICENSE +0 -0
  6. {curies-0.9.2 → curies-0.9.2.dev0}/MANIFEST.in +0 -0
  7. {curies-0.9.2 → curies-0.9.2.dev0}/README.md +0 -0
  8. {curies-0.9.2 → curies-0.9.2.dev0}/setup.cfg +0 -0
  9. {curies-0.9.2 → curies-0.9.2.dev0}/src/curies/__init__.py +0 -0
  10. {curies-0.9.2 → curies-0.9.2.dev0}/src/curies/__main__.py +0 -0
  11. {curies-0.9.2 → curies-0.9.2.dev0}/src/curies/api.py +0 -0
  12. {curies-0.9.2 → curies-0.9.2.dev0}/src/curies/cli.py +0 -0
  13. {curies-0.9.2 → curies-0.9.2.dev0}/src/curies/discovery.py +0 -0
  14. {curies-0.9.2 → curies-0.9.2.dev0}/src/curies/mapping_service/__init__.py +0 -0
  15. {curies-0.9.2 → curies-0.9.2.dev0}/src/curies/mapping_service/api.py +0 -0
  16. {curies-0.9.2 → curies-0.9.2.dev0}/src/curies/mapping_service/rdflib_custom.py +0 -0
  17. {curies-0.9.2 → curies-0.9.2.dev0}/src/curies/mapping_service/utils.py +0 -0
  18. {curies-0.9.2 → curies-0.9.2.dev0}/src/curies/py.typed +0 -0
  19. {curies-0.9.2 → curies-0.9.2.dev0}/src/curies/reconciliation.py +0 -0
  20. {curies-0.9.2 → curies-0.9.2.dev0}/src/curies/resolver_service.py +0 -0
  21. {curies-0.9.2 → curies-0.9.2.dev0}/src/curies/sources.py +0 -0
  22. {curies-0.9.2 → curies-0.9.2.dev0}/src/curies.egg-info/SOURCES.txt +0 -0
  23. {curies-0.9.2 → curies-0.9.2.dev0}/src/curies.egg-info/dependency_links.txt +0 -0
  24. {curies-0.9.2 → curies-0.9.2.dev0}/src/curies.egg-info/entry_points.txt +0 -0
  25. {curies-0.9.2 → curies-0.9.2.dev0}/src/curies.egg-info/requires.txt +0 -0
  26. {curies-0.9.2 → curies-0.9.2.dev0}/src/curies.egg-info/top_level.txt +0 -0
  27. {curies-0.9.2 → curies-0.9.2.dev0}/tests/__init__.py +0 -0
  28. {curies-0.9.2 → curies-0.9.2.dev0}/tests/constants.py +0 -0
  29. {curies-0.9.2 → curies-0.9.2.dev0}/tests/test_api.py +0 -0
  30. {curies-0.9.2 → curies-0.9.2.dev0}/tests/test_discovery.py +0 -0
  31. {curies-0.9.2 → curies-0.9.2.dev0}/tests/test_federated_sparql.py +0 -0
  32. {curies-0.9.2 → curies-0.9.2.dev0}/tests/test_io.py +0 -0
  33. {curies-0.9.2 → curies-0.9.2.dev0}/tests/test_mapping_service.py +0 -0
  34. {curies-0.9.2 → curies-0.9.2.dev0}/tests/test_reconciliation.py +0 -0
  35. {curies-0.9.2 → curies-0.9.2.dev0}/tests/test_resolver_service.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: curies
3
- Version: 0.9.2
3
+ Version: 0.9.2.dev0
4
4
  Summary: Idiomatic conversion between URIs and compact URIs (CURIEs)
5
5
  Author-email: Charles Tapley Hoyt <cthoyt@gmail.com>
6
6
  Maintainer-email: Charles Tapley Hoyt <cthoyt@gmail.com>
@@ -1,11 +1,13 @@
1
1
  # See https://setuptools.readthedocs.io/en/latest/build_meta.html
2
2
  [build-system]
3
+ # requires = ["uv>=0.5.7,<0.6.0"]
4
+ # build-backend = "uv"
3
5
  requires = ["setuptools", "wheel"]
4
6
  build-backend = "setuptools.build_meta"
5
7
 
6
8
  [project]
7
9
  name = "curies"
8
- version = "0.9.2"
10
+ version = "0.9.2-dev"
9
11
  description = "Idiomatic conversion between URIs and compact URIs (CURIEs)"
10
12
  readme = "README.md"
11
13
  authors = [
@@ -108,11 +110,9 @@ where = ["src"] # list of folders that contain the packages (["."] by default)
108
110
  [tool.setuptools.package-data]
109
111
  "*" = ["*.*"]
110
112
 
111
-
112
113
  [project.scripts]
113
114
  curies = "curies.cli:main"
114
115
 
115
-
116
116
  [tool.cruft]
117
117
  skip = [
118
118
  "**/__init__.py",
@@ -223,7 +223,7 @@ known-first-party = [
223
223
  docstring-code-format = true
224
224
 
225
225
  [tool.bumpversion]
226
- current_version = "0.9.2"
226
+ current_version = "0.9.2-dev"
227
227
  parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(?:-(?P<release>[0-9A-Za-z-]+(?:\\.[0-9A-Za-z-]+)*))?(?:\\+(?P<build>[0-9A-Za-z-]+(?:\\.[0-9A-Za-z-]+)*))?"
228
228
  serialize = [
229
229
  "{major}.{minor}.{patch}-{release}+{build}",
@@ -5,7 +5,7 @@ __all__ = [
5
5
  "get_version",
6
6
  ]
7
7
 
8
- VERSION = "0.9.2"
8
+ VERSION = "0.9.2-dev"
9
9
 
10
10
 
11
11
  def get_version() -> str:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: curies
3
- Version: 0.9.2
3
+ Version: 0.9.2.dev0
4
4
  Summary: Idiomatic conversion between URIs and compact URIs (CURIEs)
5
5
  Author-email: Charles Tapley Hoyt <cthoyt@gmail.com>
6
6
  Maintainer-email: Charles Tapley Hoyt <cthoyt@gmail.com>
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes