-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 788 Bytes
/
setup.py
File metadata and controls
37 lines (34 loc) · 788 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
37
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
>>> python setup.py sdist
>>> python setup.py bdist --format=zip
"""
from setuptools import setup
from setuptools import find_packages
setup(
name='trest',
version='1.0.0',
description='基于Tornado结合asyncio的web mvc框架',
author='leeyi',
author_email='leeyisoft@icloud.com',
url='https://gitee.com/leeyi/trest',
license='MIT Licence',
packages=find_packages(),
include_package_data=True,
platforms='any',
install_requires=[
'tornado>=6.0.0',
'pyyaml',
'mysqlclient',
'sqlalchemy',
'redis==2.10.6',
'rsa',
'pycryptodome',
'pytz',
'python-dateutil',
'requests',
'raven',
'pika',
],
)