Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Fabian Blumenroehr committed Sep 14, 2022
1 parent 32a4b11 commit e636223
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,18 @@
setup(
name = 'NEP-Metadata-Mapping-Tool', # How you named your package folder (MyLib)
packages = ['NEP-Metadata-Mapping-Tool'], # Chose the same as "name"
version = '1.0.0', # Start with a small number and increase it with every change you make
version = '1.1.5', # Start with a small number and increase it with every change you make
license='cc', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description = 'A library for mapping metadata attributes from file format schemas to a json schema document', # Give a short description about your library
author = 'Nicolas Blumenroehr', # Type in your name
author_email = 'nicolas.blumenroehr@gmail.com', # Type in your E-Mail
url = 'https://github.com/user/nicolasblumenroehr', # Provide either the link to your github or to your website
download_url = 'https://github.com/nicolasblumenroehr/NEP-Metadata-Mapping-Tool/archive/refs/tags/1.0.0.tar.gz', # I explain this later on
download_url = 'https://github.com/nicolasblumenroehr/NEP-Metadata-Mapping-Tool/archive/refs/tags/1.1.5.tar.gz', # I explain this later on
keywords = ['Schema','Mapping','DICOM','JSON'], # Keywords that define your package best
install_requires=[ # I get to this in a second
'pydicom',
'jsonschema'
'jsonschema',
'openpyxl'
],
classifiers=[
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
Expand All @@ -23,7 +24,9 @@
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)

0 comments on commit e636223

Please sign in to comment.