-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
30 lines (30 loc) · 1.04 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from distutils.core import setup
setup(
name = 'jammato',
packages = ['jammato'],
version = '1.3',
license='cc',
description = 'A package for mapping metadata attributes from proprietary file format schemas to a json schema document.',
author = 'Nicolas Blumenroehr',
author_email = '[email protected]',
url = 'https://github.com/user/nicolasblumenroehr',
download_url = 'https://github.com/kit-data-manager/JaMMaTo/archive/refs/tags/3.0.2.tar.gz',
keywords = ['Schema', 'Mapping', 'DICOM', 'JSON'],
install_requires=[
'pydicom',
'jsonschema',
'urllib3',
'datetime',
'typing',
'zipp',
'nested_lookup'
],
python_requires = '>=3.8',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: Common Public License',
'Programming Language :: Python :: 3'
],
)