forked from activefrequency/django-bursar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1.17 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
33
34
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-bursar',
version = version,
description = "bursar",
long_description = """This is a generic payment system for Django. It is a spin-off project from Satchmo.""",
author = 'Bruce Kroeze',
author_email = '[email protected]',
url = 'http://bitbucket.org/bkroeze/django-bursar/',
license = 'New BSD License',
platforms = ['any'],
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django'],
packages = find_packages(),
include_package_data = True,
package_dir = {'bursar': 'bursar'},
package_data = {'bursar': ['templates/*/*']}
)