1
0
Fork 0
mirror of https://github.com/qurator-spk/modstool.git synced 2025-07-11 03:19:53 +02:00
modstool/setup.py

30 lines
998 B
Python
Raw Normal View History

from io import open
from setuptools import find_packages, setup
with open('requirements.txt') as fp:
install_requires = fp.read()
2022-05-04 20:02:27 +02:00
with open('requirements-test.txt') as fp:
tests_requires = fp.read()
setup(
name='modstool',
author='Mike Gerber, The QURATOR SPK Team',
author_email='mike.gerber@sbb.spk-berlin.de, qurator@sbb.spk-berlin.de',
description='Convert MODS metadata to a pandas DataFrame',
long_description=open('README.md', 'r', encoding='utf-8').read(),
long_description_content_type='text/markdown',
2019-08-29 16:28:06 +02:00
keywords='qurator mets mods library',
license='Apache',
namespace_packages=['qurator'],
packages=find_packages(exclude=['*.tests', '*.tests.*', 'tests.*', 'tests']),
install_requires=install_requires,
entry_points={
'console_scripts': [
'modstool=qurator.modstool.modstool:main',
2022-05-04 20:02:27 +02:00
'altotool=qurator.modstool.altotool:main',
]
},
python_requires='>=3.0.0',
2022-05-04 20:02:27 +02:00
tests_requires=tests_requires,
)