This repository was archived by the owner on Nov 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.j2
More file actions
45 lines (41 loc) · 1.21 KB
/
setup.j2
File metadata and controls
45 lines (41 loc) · 1.21 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
44
45
#!/usr/bin/python
import setuptools
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
KEYWORDS = ('dnstap receiver client json yaml text')
setuptools.setup(
name="dnstap_receiver",
version="{{ version }}",
author="Denis MACHARD",
description="Python Dnstap receiver",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/dmachard/dnstap_receiver",
packages=['dnstap_receiver'],
include_package_data=True,
platforms='any',
keywords=KEYWORDS,
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
],
entry_points={'console_scripts': ['dnstap_receiver = dnstap_receiver.receiver:start_receiver']},
install_requires=[
"dnstap_pb",
"pyyaml",
"aiohttp",
"geoip2",
"tlds",
"cachetools",
"fstrm",
"requests"
],
extras_require={
"kafka": ["confluent-kafka"],
"pgsql": ["asyncpg"],
"rabbitmq": ["pika"],
}
)