-
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 #5 from joshmoore/setuptools_scm
General cleanup
- Loading branch information
Showing
11 changed files
with
91 additions
and
822 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 |
---|---|---|
|
@@ -11,8 +11,8 @@ jobs: | |
- uses: actions/setup-python@v2 | ||
- name: Build a binary wheel and a source tarball | ||
run: | | ||
python -mpip install setuptools versioneer wheel | ||
python setup.py sdist bdist_wheel | ||
python -mpip install setuptools build wheel | ||
python -m build | ||
- name: Publish distribution to PyPI | ||
if: startsWith(github.ref, 'refs/tags') | ||
uses: pypa/[email protected] | ||
|
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,2 @@ | ||
[settings] | ||
known_third_party = entrypoints,omero,omero_marshal,omero_rdf,rdflib,setuptools,versioneer,wikidataintegrator | ||
known_third_party = entrypoints,omero,omero_marshal,omero_rdf,rdflib,wikidataintegrator |
This file was deleted.
Oops, something went wrong.
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
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,71 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools>=60", | ||
"setuptools-scm>=8.0", | ||
] | ||
|
||
[tools.setuptools.dynamic] | ||
version = {attr = "omero_rdf.__version__"} | ||
|
||
[project] | ||
name = "omero-rdf" | ||
readme = "README.rst" | ||
dynamic = ["version"] | ||
description="A plugin for exporting rdf from OMERO" | ||
|
||
requires-python = ">3.8" | ||
|
||
dependencies = [ | ||
"omero-py>=5.8", | ||
"entrypoints", | ||
"types-entrypoints", | ||
"future", | ||
"rdflib", | ||
"omero-marshal", | ||
"wikidataintegrator", | ||
] | ||
|
||
classifiers = [ | ||
"Development Status :: 2 - Pre-Alpha", | ||
"Environment :: Plugins", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: End Users/Desktop", | ||
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", | ||
"Natural Language :: English", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
] | ||
|
||
keywords = [ | ||
"OMERO.cli", "plugin", | ||
] | ||
|
||
authors = [ | ||
{name = "The Open Microscopy Team"}, | ||
] | ||
|
||
[project.optional-dependencies] | ||
tests = [ | ||
"pytest", | ||
"restview", | ||
"mox3", | ||
] | ||
|
||
[project.urls] | ||
Repository = "https://github.com/German-BioImaging/omero-rdf" | ||
Changelog = "https://github.com/German-BioImaging/omero-rdf/blob/master/CHANGES.txt" | ||
|
||
[project.entry-points."omero_rdf.annotation_handler"] | ||
idr_annotations = "omero_rdf.idr_annotations:IDRAnnotationHandler" | ||
|
||
[tool.setuptools] | ||
package-dir = {""= "src"} | ||
|
||
[tools.mypy] | ||
check_untyped_defs = true | ||
disallow_incomplete_defs = true | ||
disallow_untyped_defs = true | ||
no_implicit_optional = true | ||
disallow_any_generics = false | ||
ignore_missing_imports = true |
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
Oops, something went wrong.