-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (41 loc) · 1.22 KB
/
setup.py
File metadata and controls
43 lines (41 loc) · 1.22 KB
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
from journalpump import __version__
from setuptools import find_packages, setup
import os
setup(
name="journalpump",
version=os.getenv("VERSION") or __version__,
zip_safe=False,
packages=find_packages(exclude=["test", "systest"]),
extras_require={},
install_requires=[
"kafka-python<2.0.4",
"requests",
"websockets<14.0",
"aiohttp-socks",
"python-snappy",
"botocore",
"google-api-python-client",
"google-auth",
"geoip2",
'google-re2<1.1.20251105; python_version < "3.14"',
],
dependency_links=[],
package_data={},
data_files=[],
entry_points={
"console_scripts": [
"journalpump = journalpump.__main__:main",
],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: System :: Logging",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
],
)