-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 1.3 KB
/
setup.py
File metadata and controls
39 lines (36 loc) · 1.3 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
36
37
38
39
from distutils.core import setup
from setuptools import find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()
setup(
name='affirm-pay',
packages=find_packages(),
version='0.6',
license='MIT',
description='Python Client for Affirm',
long_description=long_description,
long_description_content_type='text/markdown',
author='Anshul Sharma',
author_email='anshul.jmi@gmail.com',
url='https://github.com/raun/affirm-python-sdk',
download_url='https://github.com/raun/affirm-python-sdk/archive/v_05.tar.gz',
keywords=['AFFIRM', 'SDK', 'CLIENT', 'INTEGRATION'],
install_requires=[
'requests',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: OS Independent',
'Natural Language :: English',
],
)