-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 832 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 832 Bytes
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
PACKAGE_NAME = 'exlibris'
setup(
name='python-exlibris',
version='0.1.1',
description='Python client for the bookrepublic exlibris API',
url='https://github.com/monksoftware/python-exlibris',
author='Leonardo Donelli',
author_email='learts92@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules'
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords='exlibris client api ebook',
packages=[PACKAGE_NAME],
install_requires=['requests'],
)