-
Notifications
You must be signed in to change notification settings - Fork 58
/
setup.py
72 lines (68 loc) · 2.16 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
import setuptools
import versioneer
import os
import versioneer
extras = {
'github': [ 'github3.py>=1.1' ],
}
long_description = None
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as _in:
long_description = _in.read()
setuptools.setup(
name = 'boundary-layer',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author = 'Kevin McHale',
author_email = '[email protected]',
description = 'Builds Airflow DAGs from configuration files',
long_description = long_description,
long_description_content_type = 'text/markdown',
url = 'https://github.com/etsy/boundary-layer',
packages = setuptools.find_packages(),
package_data = {
'boundary_layer': [
'builders/templates/*.j2',
],
'boundary_layer_default_plugin': [
'config/generators/*.yaml',
'config/operators/*.yaml',
'config/resources/*.yaml',
'config/subdags/*.yaml',
]
},
entry_points = {
'boundary_layer_plugins': [
'default=boundary_layer_default_plugin.plugin:DefaultPlugin',
]
},
extras_require = extras,
install_requires = [
'semver>=2.7.0,<3.0',
'jsonschema>=2.6.0,<3.0',
'jinja2>=2.8.1',
'pyyaml>=4.2b1',
'marshmallow>=2.13.6,<3.0',
'networkx>=2.4,<2.5',
'xmltodict>=0.11.0,<1.0',
'six>=1.11.0,<2.0',
'markupsafe==2.0.1',
'importlib-metadata<5.0',
],
scripts = ['bin/boundary-layer'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Utilities',
],
license = 'Apache License 2.0',
keywords = 'airflow',
zip_safe = False,
python_requires='>=3.6',
)