-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
73 lines (55 loc) · 1.83 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
from os import path
from setuptools import find_packages
from setuptools import setup
version = '0.0.1'
here = path.abspath(path.dirname(__file__))
long_description = """Birgitta-example-etl is an example project to
demonstrate how Birgitta can be used.
Birgitta is a Python ETL test and schema framework,
providing automated tests for pyspark notebooks/recipes.
Birgitta allows doing solid ETL and ML, while still liberally
allowing imperfect notebook code, enabling a
`DataOps <https://www.dataopsmanifesto.org>` way of
working which is both solid and agile, not killing
Data Scientist flexibility by excessive coding standards in notebooks.
In addition to running recipetests on your local dev machine or on
a CI/CD server, there is support for running recipetests
as [Dataiku](https://www.dataiku.com] DSS Scenarios.
"""
setup(
name='newsltd_etl',
version=version,
description='Example project for Birgitta, a framework for pyspark and notebook unit testing, especially focused on Dataiku.', # noqa 501
long_description=long_description,
url='https://github.com/telia-oss/birgitta-example-etl',
author='Telia Norge',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
keywords='',
packages=find_packages(exclude=[
'contrib',
'docs',
'*.tests',
'*.tests.*',
'tests.*',
'tests'
]),
# List of dependencies, with exact versions
install_requires=[
'docopt',
'birgitta'
],
include_package_data=True,
package_data={},
entry_points={
'console_scripts': [
]
}
)