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
|
import setuptools
setuptools.setup(
name="quarg",
version="0.1.0",
author="Wolfgang Müller",
author_email="wolf@oriole.systems",
description="Search Quassel logs for matching messages and print them",
url="https://git.oriole.systems/quarg",
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(),
python_requires=">=3.8",
entry_points = {
'console_scripts': [
'quarg = quarg.main:main',
]
},
install_requires=[
'python-dateutil>=2.8.1',
'sqlalchemy>=1.4',
],
)
|