-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
52 lines (46 loc) · 1.6 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python3
# Standard library
import re
# setuptools
from setuptools import setup, find_packages
# lendingclub2
from lendingclub2 import __version__
# Constants
IMAGES = re.compile(r'\[.*\]\(http.*\)\n',
flags=re.MULTILINE)
with open('README.md', encoding='utf-8') as fin:
long_description = IMAGES.sub('', fin.read())
setup(
name="lendingclub2",
version=__version__,
description='Help automating LendingClub processes',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=[
'requests>=2.21',
],
author='Alex Hartoto',
author_email='[email protected]',
url='https://github.com/ahartoto/lendingclub2',
keywords=['lendingclub', 'lending-club', 'p2p', 'loan', 'api'],
license='MIT',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Office/Business :: Financial',
],
)