forked from laulin/feedoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 889 Bytes
/
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
from setuptools import setup, find_packages
setup(name='feedo',
version='0.1.0',
url='https://github.com/laulin/feedo',
license='GPLV3',
author='Laurent MOULIN',
author_email='[email protected]',
description='General purpose data processor',
packages=find_packages(exclude=['tests', "etc", "build", "dist", "feedo.egg-info"]),
install_requires=["rethinkdb", "chronyk", "inotify", "pyyaml", "fluentbit-server-py>=1.0.2"],
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU GPL V3 License",
"Operating System :: OS Independent",
],
python_requires='>=3',
entry_points={
'console_scripts': [
'feedo = feedo.feedo:main'
]
}
)