forked from namaggarwal/splitwise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (38 loc) · 1.45 KB
/
setup.py
File metadata and controls
42 lines (38 loc) · 1.45 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
40
41
42
from setuptools import setup, find_packages
import os
INSTALL_REQUIRES = []
INSTALL_REQUIRES.append('oauth2')
license='MIT'
if os.path.exists('LICENSE'):
license = open('LICENSE').read()
long_description = """
The Splitwise SDK provides Splitwise APIs to get data from your Splitwise Account.
1. https://github.com/namaggarwal/splitwise - README
2. https://github.com/namaggarwal/flask-splitwise-example - Sample
"""
setup(name='splitwise',
version='1.1.0',
description='Splitwise API SDK',
long_description=long_description,
author='Naman Aggarwal',
author_email='nam.aggarwal@yahoo.com',
url='https://github.com/namaggarwal/splitwise',
download_url='https://github.com/namaggarwal/splitwise/tarball/1.1.0',
license=license,
packages=find_packages(),
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules'
],
install_requires=INSTALL_REQUIRES
)