-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
52 lines (48 loc) · 1.07 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
40
41
42
43
44
45
46
47
48
49
50
51
52
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
requires = [
"avro-python3",
"boto3",
"colorlog==3.1.4",
"fastavro",
"faust==1.4.2",
"keras",
"langdetect",
"matplotlib",
"nltk",
"numpy",
"pandas",
"robinhood-aiokafka>=0.4.19,<0.5.0",
"rollbar",
"seaborn",
"sklearn",
"tensorflow",
]
setup(
name='faust-example',
version='0.0.1',
description='Faust example with Docker',
long_description='''
Example running Faust with Docker containers
''',
classifiers=[
"Programming Language :: Python",
],
author='Ryan Whitten',
author_email='rwhitten577@gmail.com',
url='',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=[],
setup_requires=[],
dependency_links=[],
entry_points={
'configs': [
'video = example.video_config:VideoConfig',
'channel = example.channel_config:ChannelConfig',
]
}
)