-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (40 loc) · 1.17 KB
/
setup.py
File metadata and controls
44 lines (40 loc) · 1.17 KB
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
38
39
40
41
42
43
44
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
base = os.path.dirname(os.path.abspath(__file__))
install_requires = [
'aiohttp==2.2.3',
'aiohttp_jinja2',
'asyncio',
'aiohttp_debugtoolbar==0.4.0',
'aiohttp_autoreload',
'schematics==2.0.0a1',
'aiopg==0.13.0',
'ipython==7.16.3',
'raven==6.1.0',
'raven-aiohttp==0.5.0',
]
tests_require = [
'pytest',
'pytest-aiohttp'
]
setup(name='djaio',
version='0.0.29',
description='Djaio - Django-inspired AsyncIO web framework',
author='Vadim Tregubov',
author_email='vatregubov@sberned.ru',
url='https://github.com/Sberned/djaio',
packages=find_packages(),
install_requires=install_requires,
classifiers=[
'Development Status :: 3 - Alpha',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Topic :: System :: Software Distribution',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
tests_require=tests_require
)