You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
869 B
Python
27 lines
869 B
Python
5 years ago
|
from io import open
|
||
|
from setuptools import find_packages, setup
|
||
|
|
||
|
with open('requirements.txt') as fp:
|
||
|
install_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',
|
||
|
keywords='qurator mets mots library',
|
||
|
license='Apache',
|
||
|
packages=find_packages(exclude=['*.tests', '*.tests.*',
|
||
|
'tests.*', 'tests']),
|
||
|
install_requires=install_requires,
|
||
|
entry_points={
|
||
|
'console_scripts': [
|
||
|
'modstool=qurator.modstool.modstool:main',
|
||
|
]
|
||
|
},
|
||
|
python_requires='>=3.0.0',
|
||
|
tests_require=['pytest'],
|
||
|
)
|