-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
78 lines (61 loc) · 1.84 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
74
75
76
77
78
from os import path
from setuptools import find_packages
from setuptools import setup
version = '0.1.37'
here = path.abspath(path.dirname(__file__))
long_description = """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='birgitta',
version=version,
description='Pyspark and notebook unit testing, especially focused on Dataiku.', # noqa 501
long_description=long_description,
url='https://github.com/telia-oss/birgitta',
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',
'numpy',
'pyspark',
'mock',
'pandas',
'pyarrow',
'pytest',
'pytest-cov',
'pytest_mock',
'holidays'
],
include_package_data=True,
package_data={},
entry_points={
'console_scripts': [
]
}
)