-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 790 Bytes
/
setup.py
File metadata and controls
36 lines (35 loc) · 790 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
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
setup(
name='skygrid',
version='0.1.20',
url='https://github.com/skygrid/skygrid-api-server',
author='Alexander Baranov',
author_email='sashab1@yandex-team.ru',
packages=find_packages(),
description='SkyGrid API server',
install_requires=[
"Flask",
"Flask-RESTful",
"Jinja2",
"MarkupSafe",
"WTForms",
"aniso8601",
"argparse",
"flask-mongoengine",
"itsdangerous",
"mongoengine",
"pymongo",
"pytz",
"requests",
"six",
"wsgiref",
"pika",
"skygrid-libscheduler",
"flask-cors",
"gevent"
],
tests_require=[
"nose",
"nose-testconfig",
],
)