-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
23 lines (20 loc) · 809 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
23
from distutils.core import setup
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
setup(name='ecart',
packages=['ecart'],
version='1.0.2',
description='Framework agnostic, redis backed, cart system, Python library ',
long_description=long_description,
author='Nimesh Kiran Verma, Rohit khatana',
author_email='nimesh.aug11@gmail.com, rohitkhatana.khatana@gmail.com',
url='https://github.com/nimeshkverma/ecart',
download_url='https://github.com/nimeshkverma/ecart/tarball/1.0.2',
py_modules=['ecart'],
install_requires=['redis'],
keywords=['ecart', 'cart', 'redis', 'E-commerce', 'webservices'],
classifiers=[],
)