This repository has been archived by the owner on Feb 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
51 lines (46 loc) · 1.56 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
51
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals
import sys
import shopit
from setuptools import find_packages, setup
CLASSIFIERS = [
'Environment :: Web Environment',
'Framework :: Django :: 1.11',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
]
setup(
author='Dino Perovic',
author_email='[email protected]',
name='django-shopit',
version=shopit.__version__,
description='Fully featured shop application built on djangoSHOP framework.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/dinoperovic/django-shopit',
license='BSD License',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
packages=find_packages(exclude=['tests', 'docs']),
include_package_data=True,
zip_safe=False,
install_requires=[
'django-shop==0.12.3',
'django-cms==3.5.3',
'django-parler>=1.6.5',
'django-mptt>=0.8.6',
'django-admin-sortable2>=0.6.4',
'measurement==1.8.0',
'django-measurement>=2.4.0',
'djangocms-cascade==0.17.10',
'djangorestframework==3.8.2',
],
setup_requires=['pytest-runner'] if {'pytest', 'test', 'ptr'}.intersection(sys.argv) else [],
tests_require=['pytest-django'],
)