-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 978 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 978 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
28
29
30
31
from setuptools import setup
from kbwc_api_client.version import __version__
import os
import sys
if sys.argv[-1] == 'test':
os.system('python test.py')
sys.exit()
setup(
name='kbwc_api_client',
version=__version__,
author='Paul Moss',
author_email='mossp@oclc.org',
url='http://oclc.org/knowledgebase',
packages=['kbwc_api_client', 'kbwc_api_client/util'],
install_requires=['requests>=0.10.6'],
license='Apache Software License',
description='Client for the WorldCat knowledge base',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
],
)