forked from archivesspace-labs/ArchivesSnake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 821 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="ArchivesSnake",
url="https://github.com/archivesspace-labs/ArchivesSnake",
description="ArchivesSpace Client Library",
long_description="""A client library for the ArchivesSpace REST API.""",
author="ArchivesSnake Developer Group",
author_email="[email protected]",
version="0.8.1",
packages=find_packages(),
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: Apache Software License',
],
python_requires="~=3.4",
install_requires=[
"attrs",
"boltons",
"pyyaml",
"requests",
"structlog",
"more_itertools",
],
)