forked from CorneiZeR/django-redis-aiogram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (40 loc) · 1.27 KB
/
setup.py
File metadata and controls
46 lines (40 loc) · 1.27 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
45
46
#!/usr/bin/env python
from io import open
from setuptools import setup, find_packages
NAME = 'django-redis-aiogram'
VERSION = '1.0.8'
def read_md(file_path):
with open(file_path) as fp:
return fp.read()
setup(
name=NAME,
version=VERSION,
install_requires=(
'django>=4',
'redis>=4.6',
'aiogram>=3.0.0'
),
author='Oleksii Kolosiuk',
author_email='kolosyuk1@gmail.com',
license='MIT',
url='https://github.com/CorneiZeR/django-redis-aiogram',
keywords='django redis aiogram docker',
description='Running aiogram in neighbor container, sending messages to telegram via redis',
long_description=read_md('README.md'),
long_description_content_type='text/markdown',
packages=find_packages(),
python_requires='>=3.8',
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python',
"Programming Language :: Python :: 3",
'Framework :: Django',
'Framework :: Django :: 4',
'Framework :: Django :: 5.0'
]
)