-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 805 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name = 'pyalma',
packages = find_packages(),
test_suite="test",
version = '0.0.1',
description = 'Python client for ExLibris Alma',
author = 'Getty Research Institute',
author_email = '[email protected]',
url = 'https://stash.getty.edu/projects/GRIIS/repos/pyalma/browse',
install_requires = ['pymarc', 'requests', 'aiohttp==1.3', 'ratelimiter'],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Development Status :: pre-Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)