forked from jobelenus/django-chargify
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (28 loc) · 1.09 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
from setuptools import setup, find_packages
VERSION = (1, 0, 0)
# Dynamically calculate the version based on VERSION tuple
if len(VERSION)>2 and VERSION[2] is not None:
str_version = "%d.%d_%s" % VERSION[:3]
else:
str_version = "%d.%d" % VERSION[:2]
version= str_version
setup(
name = 'django-chargify',
version = version,
description = "chargify",
long_description = """This is a generic SDK for hooking up with the Chargify API""",
author = 'Greg Doermann',
author_email = 'gdoermann@snirk.com',
url = 'http://github.com/gdoermann/django-chargify',
license = 'GNU General Public License',
platforms = ['any'],
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django'],
packages = find_packages(),
include_package_data = True,
)