Skip to content

Commit

Permalink
Release330 (#285)
Browse files Browse the repository at this point in the history
* changes in README, requirements, setup.py

* changes in setup (version number etc)

* changes for new release in CHANGES.md
  • Loading branch information
seolih authored Jan 13, 2023
1 parent e9ef5cf commit d909ded
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 26 deletions.
11 changes: 11 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
## CHANGES

### 3.3.0 (2023-01-13)

* removed old stuff, moved other old stuff to attic
* fiexed tests, pep8
* revised all mapfiles, including 'DATE' and 'STATUS' if productive, rename mapfiles for testing repos
* new mapping templates for datacite, dublincore, iso and 'groups'
* new option for https upload
* set linkcheck as option in combine
* new and modified mapfiles for repositories: Euro-Cordex, Envidat, TUW, Helmholtz, Edmond-API, B2SHARE from FZJ, FMI, LAGO, Sextant, ESRF, Universite der Lorraine, IVOA with eudatcore
* updated communities: NordicArchaeoligy, da|ra, GFZ

### 3.2.0 (2022-04-25)

* Update classify (#234,#232)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## Description

Python library to harvest, map and upload research community specific metadata into B2FIND CKAN portal. Currently, supported metadata schemas are DublinCore, DataCite and ISO 19139.
Python library to harvest, map and upload research community specific metadata into B2FIND CKAN portal. Currently, supported generic metadata schemas are DublinCore, DataCite, DDI2.5, ISO 19139 and EUDAT Core.

## Installation

Expand Down
8 changes: 0 additions & 8 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,19 +1,11 @@
sickle
# SPARQLWrapper
owslib
lxml
# simplejson
python-Levenshtein
networkx
pyyaml
# git+https://github.com/noumar/iso639.git
iso639
# dublincore
ckanapi
# b2handle
# babel
###HEW-D?? pyenchant
# pyparsing
beautifulsoup4
shapely
jsonpath-ng
Expand Down
1 change: 0 additions & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
pytest
flake8
sphinx>=1.7
23 changes: 7 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,20 @@

"""The setup script."""

from setuptools import find_packages
from setuptools import setup
from setuptools import find_packages, setup

__author__ = "Heinrich Widmann"
__contact__ = "widmann@dkrz.de"
__copyright__ = "Copyright (c) 2013 Heinrich Widmann (DKRZ)"
__version__ = "3.2.0"
__license__ = "BSD"


from setuptools import setup, find_packages
__author__ = "Claudia Martens"
__contact__ = "martens@dkrz.de"
__version__ = "3.3.0"
__license__ = "Apache 2.0"

# One strategy for storing the overall version is to put it in the top-level
# package's __init__ but Nb. __init__.py files are not needed to declare
# packages in Python 3
# from clisops import __version__ as _package_version

# Populate long description setting with content of README
#
# Use markdown format read me file as GitHub will render it automatically
# on package page
# Use markdown format read me file as GitHub will render it automatically on package page

with open("README.md") as readme_file:
_long_description = readme_file.read()

Expand All @@ -38,13 +31,11 @@
"sphinx",
]


# dev_requirements = [line.strip() for line in open('requirements_dev.txt')]

setup(
author=__author__,
author_email=__contact__,

# See:
# https://www.python.org/dev/peps/pep-0301/#distutils-trove-classification
classifiers=[
Expand Down

0 comments on commit d909ded

Please sign in to comment.