-
Notifications
You must be signed in to change notification settings - Fork 153
/
setup.py
36 lines (33 loc) · 993 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
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
VERSION = '28.0.0'
url = 'https://github.com/plaid/plaid-python'
REQUIRES = [
"urllib3 >= 1.25.3",
"python-dateutil",
"nulltype",
]
setup(
name='plaid-python',
version=VERSION,
description='Python client library for the Plaid API and Link',
long_description='',
keywords='api, client, plaid',
author='Plaid Inc.',
author_email='[email protected]',
url=url,
download_url='{}/tarball/v{}'.format(url, VERSION),
license='MIT',
packages=find_packages(exclude='tests'),
package_data={'README': ['README.md']},
python_requires=">=3.6",
install_requires=REQUIRES,
zip_safe=False,
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Web Environment",
]
)