forked from siddhiparkar151992/Online-Book-Store
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 643 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 643 Bytes
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
'''
Created on 23-Feb-2016
@author: parkar_s
'''
from setuptools import setup
setup(
name='Online Book Store',
version=1.0,
url='https://github.com/siddhiparkar151992/Py_Shopping_Cart',
author='Siddhi Parkar',
author_email='siddhiparkar15@gmail.com',
description='A shopping cart',
long_description=__doc__,
include_package_data=True,
zip_safe=False,
platforms='any',
packages=['BookStore'],
install_requires=[
'virtualenv>=14.0.3',
'Flask>=0.10.1',
'flask-restful>=0.3.5',
'pymysql>=0.7.1',
'pymongo>=3.2.3',
'jsonpickle>= 0.9.3'
]
)