-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 996 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (30 loc) · 996 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from os import path
from setuptools import setup, find_packages
this_directory = path.abspath(path.dirname(__file__))
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='aiogram-logging',
description='Simplifies sending logs from your bots to DB.',
long_description=long_description,
long_description_content_type="text/markdown",
version='0.0.1',
url='https://github.com/dkeysil/aiogram-logging',
author='Dmitry Keysil',
author_email='kl0opa.11@gmail.com',
license='MIT',
classifiers=[
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
packages=find_packages(include=['aiogram_logging', 'aiogram_logging.*']),
install_requires=[
'aiogram<3',
'aioinflux',
],
python_requires=">=3.6",
)