forked from kfit-dev/dynamic-singer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 856 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
27
28
29
import setuptools
__packagename__ = 'dynamic-singer'
setuptools.setup(
name = __packagename__,
packages = setuptools.find_packages(),
version = '0.0.16',
python_requires = '>=3.7.*',
description = 'Python API, Dynamic source, Dynamic target, N targets, Prometheus exporter, realtime transformation for Singer ETL',
author = 'huseinzol05',
author_email = '[email protected]',
url = 'https://github.com/huseinzol05/dynamic-singer',
install_requires = [
'genson',
'singer-python==5.3.3',
'jsonschema',
'herpetologist',
'tornado',
],
license = 'MIT',
classifiers = [
'Programming Language :: Python :: 3.7',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)