-
Notifications
You must be signed in to change notification settings - Fork 222
/
setup.py
48 lines (45 loc) · 1.38 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
45
46
47
48
# python imports
import os
from setuptools import find_packages
from setuptools import setup
# lfs imports
from lfs import __version__
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README.rst")).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 >= 1.10, < 1.11",
"django-compressor == 2.1.1",
"django-localflavor == 1.4.1",
"django-paypal == 0.3.6",
"django-portlets >= 1.5, < 1.6",
"django-postal == 0.96",
"django-reviews >= 1.2, < 1.3",
"lfs-contact >= 1.3, < 1.4",
"lfs-order-numbers >= 1.2, < 1.3",
"lfs-paypal >= 1.4, < 1.5",
"lfs-theme >= 0.11, < 0.12",
"Pillow == 4.0",
],
)