-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
45 lines (41 loc) · 1.17 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
import re
from pathlib import Path
from setuptools import setup, find_packages
with Path(__file__).with_name('dvhb_hybrid').joinpath('__init__.py').open() as f:
VERSION = re.compile(r'.*__version__ = \'(.*?)\'', re.S).match(f.read()).group(1)
setup(
name='dvhb-hybrid',
version=VERSION,
description='',
author='Malev A',
author_email='am@dvhb.ru',
url='https://github.com/dvhb/dvhb-hybrid',
packages=find_packages(),
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP',
'Framework :: Django',
'Framework :: Aiohttp',
],
include_package_data=True,
zip_safe=False,
install_requires=[
'django',
'psycopg2-binary',
'aioredis>=1.0.0',
'aioworkers',
'aiohttp-apiset',
'asyncpgsa',
'aiohttp_apiset',
'sqlalchemy',
'pyyaml',
'Pillow',
'Babel',
'aioauth-client',
]
)