2022-11-27 23:01:30 +01:00
|
|
|
from setuptools import setup, find_packages
|
2022-11-23 02:00:43 +01:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name="regina",
|
|
|
|
version="1.0",
|
|
|
|
description="Get analytics from nginx logs and visualize them",
|
|
|
|
|
|
|
|
author="Matthias Quintern",
|
|
|
|
author_email="matthias@quintern.xyz",
|
|
|
|
|
|
|
|
url="https://git.quintern.xyz/MatthiasQuintern/regina.git",
|
|
|
|
|
|
|
|
license="GPLv3",
|
|
|
|
|
2022-11-27 23:01:30 +01:00
|
|
|
packages=find_packages(),
|
2022-11-23 20:33:59 +01:00
|
|
|
install_requires=[],
|
2022-11-23 23:55:23 +01:00
|
|
|
python_requires='>=3.10',
|
2022-11-23 02:00:43 +01:00
|
|
|
|
|
|
|
classifiers=[
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Environment :: Console",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Topic :: Server",
|
|
|
|
"Topic :: Utilities",
|
|
|
|
],
|
|
|
|
|
|
|
|
# scripts=["bin/nicole"],
|
|
|
|
entry_points={
|
2022-11-27 23:01:30 +01:00
|
|
|
"console_scripts": [ "regina=regina.main:main" ],
|
2022-11-23 02:00:43 +01:00
|
|
|
},
|
|
|
|
)
|