forked from gbezyuk/session_cart
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
22 lines (21 loc) · 891 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup( name='session-cart',
version='1.3.2',
description='A session-stored cart for Django and Generic Classes',
author='Curtis Maloney, Grigoriy Bezyuk, Nestor Diaz',
url='https://github.com/n3storm/session_cart',
keywords=['django', 'cms', 'e-commerce',],
packages=find_packages(),
zip_safe=False,
classifiers = [
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)