forked from chargebee/chargebee-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 766 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import sys
import os
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'chargebee'))
import version
requires = []
try:
import json
except ImportError:
try:
import simplejson
except ImportError:
requires.append('simplejson') # For Python==2.5
setup(
name='chargebee',
version=version.VERSION,
author='ChargeBee',
author_email='[email protected]',
url='https://apidocs.chargebee.com/docs/api?lang=python',
description='Python wrapper for the ChargeBee Subscription Billing API',
packages=find_packages(exclude=["tests"]),
package_data={'chargebee': ['ssl/*.crt']},
install_requires=requires,
test_suite='tests',
)