-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 826 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
24
25
26
27
28
29
30
31
32
from setuptools import find_packages, setup
setup(
name='queuemanager',
version='0.1.0',
url='https://github.com/BCN3D/Queue-Manager-Server',
license='GPL-3.0',
author='Marc Bermejo',
maintainer='Marc Bermejo',
maintainer_email='[email protected]',
description='This server manages one printing queue for the connected printer',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'Flask>=1.0',
'flask-sqlalchemy',
'sqlalchemy',
'marshmallow<3.0.0',
'flask-socketio',
'flask-cors',
'flask-restplus',
'flask-jwt-extended',
'cryptography',
'click',
'werkzeug',
'eventlet',
'psycopg2',
'redis',
'parse'
]
)