-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
39 lines (37 loc) · 1.03 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
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",
"requests",
"websockets",
"aiohttp-socks",
"botocore",
"google-api-python-client",
"google-auth",
"geoip2",
],
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)