-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 1.06 KB
/
setup.py
File metadata and controls
32 lines (31 loc) · 1.06 KB
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
31
32
from setuptools import setup, find_packages
setup(
name='manatus',
version='1.0.15',
packages=find_packages(),
url='http://github.com/SunshineStateDigitalNetwork/manatus',
license='MIT',
author='Matthew Miguez',
author_email='r.m.miguez@gmail.com',
description='Metadata aggregation and transformation library',
long_description=open('README.rst').read() + '\n\n' +
open('CHANGES.rst').read(),
platforms='any',
install_requires=[
'pymods>=2.0.9',
'sickle>=0.7.0',
'requests'
],
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Text Processing :: Markup :: XML',
],
test_suite='manatus.tests',
keywords='oai-pmh metadata digital-libraries',
)