-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.11 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.11 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
33
34
35
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='pylend',
version='0.1.0',
description='A Python library for interacting with the LendingClub REST API',
long_description=readme(),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.3',
'Topic :: Office/Business :: Financial :: Investment'
],
url='https://github.com/Webs961/pylend',
author='William Barr III',
author_email='will.barr@outlook.com',
license='MIT',
packages=['pylend'],
install_requires=[
'requests',
'arrow'
],
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose'],)