forked from saleor/saleor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·50 lines (44 loc) · 1.3 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
49
50
#! /usr/bin/env python
from setuptools import setup, find_packages, Command
import os
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'saleor.settings')
class Command(Command):
user_options = []
initialize_options = lambda self: None
finalize_options = lambda self: None
class Lint(Command):
def run(self):
import lint
lint.run()
setup(
name='saleor',
author='Mirumee Software',
author_email='hello@mirumee.com',
description="A fork'n'play e-commerence in Django",
license='BSD',
version='0.1a0',
url='http://getsaleor.com/',
packages=find_packages(),
include_package_data=True,
install_requires=[
'Django>=1.5',
'django-mptt>=0.5',
'django-prices>=0.2,<0.3a0',
'satchless>=1.0,<1.1a0',
'South>=0.7.6',
'unidecode',
'requests>=1.2.0',
'django-payments>=0.3,<0.4a0'],
extras_require={
'lint': ['pylint==0.26.0', 'django-lint==dev']},
dependency_links=[
'http://github.com/lamby/django-lint/tarball/master#egg=django-lint-dev'],
entry_points={
'console_scripts': ['saleor = saleor:manage']},
cmdclass={
'lint': Lint},
tests_require=[
'mock==1.0.1',
'purl>=0.4.1',
'unittest2'],
test_suite='unittest2.collector')