forked from Brick85/django-qshop
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·26 lines (25 loc) · 1.23 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
#!/usr/bin/env python
from setuptools import setup
setup(name='django-qshop',
version='0.4.12',
description='E-commerce for django. Requires django-sitemenu.',
long_description='E-commerce for django. Requires django-sitemenu.',
author='Vital Belikov',
author_email='[email protected]',
packages=['qshop', 'qshop.templatetags', 'qshop.cart', 'qshop.management',
'qshop.management.commands', 'qshop.payment_vendors', 'qshop.payment_vendors.banktransfer',
'qshop.payment_vendors.paypal', 'qshop.payment_vendors.webmoney'],
url='https://github.com/Brick85/django-qshop',
include_package_data=True,
zip_safe=False,
requires=['django(>=1.4)', 'django_sitemenu', 'easy_thumbnails'],
classifiers=['Development Status :: 5 - Production',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: Unix',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities'],
license='New BSD')