forked from tendenci/tendenci-donations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 965 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
31
from setuptools import setup, find_packages
longdesc = \
'''
An addon for Tendenci for accepting Donations.
'''
setup(
name='tendenci-donations',
author='Schipul',
author_email='[email protected]',
version='7.0.0',
license='GPL3',
description='Donations addon for Tendenci',
long_description=longdesc,
url='https://github.com/tendenci/tendenci-donations',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
include_package_data=True,
packages=find_packages(),
install_requires=['tendenci>=7.0,<8.0'],
)