-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5aa3386
commit 3117f7e
Showing
6 changed files
with
53 additions
and
280 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 |
---|---|---|
|
@@ -40,6 +40,6 @@ coverage.xml | |
|
||
# Sphinx documentation | ||
docs/_build/ | ||
_version_save.py | ||
_version.py | ||
.idea | ||
.vagrant |
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 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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
[build-system] | ||
# Defined by PEP 518: | ||
requires = [ | ||
# for version management | ||
"setuptools>=46", "setuptools_scm[toml]>=6.2" | ||
] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "ckanext-dc_serve" | ||
authors = [ | ||
# In alphabetical order. | ||
{name = "Paul Müller"}, | ||
] | ||
maintainers = [ | ||
{name = "Paul Müller", email="[email protected]"}, | ||
] | ||
description = "Serve DC on DCOR data via the CKAN API interface" | ||
readme = "README.rst" | ||
requires-python = ">=3.8, <4" | ||
keywords = ["DC", "DCOR", "deformability", "cytometry"] | ||
classifiers = [ | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 3', | ||
'Topic :: Scientific/Engineering :: Visualization', | ||
'Intended Audience :: Science/Research', | ||
] | ||
license = {text = "GNU Affero General Public License v3 or later (AGPLv3+)"} | ||
dependencies = [ | ||
"ckan>=2.10.4, <3", | ||
"dclab>=0.60.9", | ||
"dcor_shared>=0.10.0", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
source = "https://github.com/DCOR-dev/ckanext-dc_serve" | ||
tracker = "https://github.com/DCOR-dev/ckanext-dc_serve/issues" | ||
changelog = "https://github.com/DCOR-dev/ckanext-dc_serve/blob/main/CHANGELOG" | ||
|
||
[project.entry-points."ckan.plugins"] | ||
dc_serve = "ckanext.dc_serve.plugin:DCServePlugin" | ||
|
||
[tool.setuptools_scm] | ||
write_to = "ckanext/dc_serve/_version.py" | ||
version_scheme = "post-release" | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["."] | ||
include = ["ckanext.dc_serve"] |