forked from redbus-labs/arango-clickhouse-replica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (17 loc) · 755 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
def get_required_packages():
with open('./requirements.txt', 'r') as file:
return [line.rstrip('\n') for line in file.readlines()]
setup(
name='replica',
version='1.0',
packages=['test', 'util', 'alert', 'cache', 'config', 'logger', 'tables', 'arangodb', 'clickhouse', 'replication',
'replication.schema', 'replication.updater', 'replication.consumer', 'replication.producer',
'replication.replicator'],
url='http://ias-01.redbus.in/capi/UGC/-/tree/open-source/Arango-CH',
license='',
author='ajith.a',
author_email='[email protected]',
description='Auto replicate the data from Arango to Clickhouse',
install_requires=get_required_packages()
)