forked from fkie-cad/Logprep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (39 loc) · 1.36 KB
/
setup.py
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
# pylint: disable=missing-module-docstring
from pathlib import Path
from setuptools import setup, find_packages
import versioneer
with open("requirements.in", encoding="utf-8") as f:
requirements = f.read().splitlines()
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="logprep",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Logprep allows to collect, process and forward log messages from various data "
"sources.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/fkie-cad/Logprep",
author="Logprep Team",
license="LGPL-2.1 license",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
project_urls={
"Homepage": "https://github.com/fkie-cad/Logprep",
"Documentation": "https://logprep.readthedocs.io/en/latest/",
},
packages=find_packages(),
install_requires=["setuptools"] + requirements,
python_requires=">=3.9",
entry_points={
"console_scripts": [
"logprep = logprep.run_logprep:main",
]
},
)