forked from Tishka17/aiogram_dialog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 991 Bytes
/
setup.py
File metadata and controls
38 lines (34 loc) · 991 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
38
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from os import path
from setuptools import setup, find_packages
this_directory = path.abspath(path.dirname(__file__))
setup(
name='aiogram_dialog',
description='Mini-framework for dialogs on top of aiogram',
version='1.0.0',
url='https://github.com/tishka17/aiogram_dialog',
author='A. Tikhonov',
author_email='17@itishka.org',
license='Apache2',
classifiers=[
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3'
],
packages=find_packages(include=['aiogram_dialog', 'aiogram_dialog.*']),
install_requires=[
'aiogram>=2.12,<3',
'jinja2',
],
extras_require={
"tools": [
"diagrams"
]
},
package_data={
'aiogram_dialog.tools': ['calculator.png'],
},
python_requires=">=3.7",
)