forked from mdornseif/django-rewards
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
26 lines (23 loc) · 982 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
#!/usr/bin/env python
# encoding: utf-8
"""django-affiliate is an affiliate marketing tool.
"""
# setup.py
# Created by Maximillian Dornseif on 2010-01-26 for HUDORA.
# Copyright (c) 2010 HUDORA. All rights reserved.
from setuptools import setup, find_packages
setup(name='django-affiliate',
maintainer='Maximillian Dornseif',
# maintainer_email='[email protected]',
version='1.0',
description='xXXXx FILL IN HERE xXXXx',
classifiers=['License :: OSI Approved :: AGPL3 License',
'Intended Audience :: Developers',
'Programming Language :: Python'],
package_data={"django-affiliate": ["templates/django-affiliate/*.html", "reports/*.jrxml", "bin/*"]},
packages=find_packages(),
include_package_data=True,
install_requires=['huTools', 'huDjango'],
dependency_links = ['http://cybernetics.hudora.biz/dist/',
'http://cybernetics.hudora.biz/nonpublic/eggs/'],
)