-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (28 loc) · 1.06 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
from setuptools import setup, find_packages
setup(name='feedoo',
version='0.6.0',
url='https://github.com/laulin/feedoo',
license='GPLV3',
author='Laurent MOULIN',
author_email='gignops@gmail.com',
description='General purpose data processor',
packages=find_packages(exclude=['tests', "etc", "build", "dist", "feedoo.egg-info"]),
install_requires=["rethinkdb", "chronyk", "inotify", "pyyaml", "fluentbit-server-py>=1.0.4", "dnspython", "pyahocorasick"],
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"Topic :: Internet :: Log Analysis"
],
python_requires='>=3',
entry_points={
'console_scripts': [
'feedoo = feedoo.feedoo:main'
]
}
)