forked from diefenbach/django-lfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (41 loc) · 1.33 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
35
36
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
import os
version = 'dev'
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.txt')).read()
setup(name='django-lfs',
version=version,
description='LFS - Lightning Fast Shop',
long_description=README,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
keywords='django e-commerce online-shop',
author='Kai Diefenbach',
author_email='kai.diefenbach@iqpp.de',
url='http://www.getlfs.com',
license='BSD',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
dependency_links=["http://pypi.iqpp.de/"],
install_requires=[
'setuptools',
'django-compressor == 1.1.1',
'django-lfstheme == dev',
'django-pagination == 1.0.7',
'django-paypal == 0.1.2',
'django-portlets == 1.1.1',
'django-postal == 0.9',
'django-reviews == 0.2.1',
'django-tagging == 0.3.1',
'lfs-contact == 1.0',
'lfs-order-numbers == 1.0b1',
'Pillow == 1.7.5',
'South == 0.7.3',
],
)