-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (29 loc) · 912 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
30
31
32
33
34
35
36
#!/usr/bin/env python
""" setup.py for IMaRS Airflow DAGs """
from setuptools import setup
import io
def read(*filenames, **kwargs):
encoding = kwargs.get('encoding', 'utf-8')
sep = kwargs.get('sep', '\n')
buf = []
for filename in filenames:
with io.open(filename, encoding=encoding) as f:
buf.append(f.read())
return sep.join(buf)
long_description = read('README.md') # , 'CHANGES.txt')
setup(
name='imars_dags',
version='0.0.0',
description='USF IMaRS Airflow DAGs',
long_description=long_description,
author='Tylar Murray',
author_email='imarsroot@marine.usf.edu',
url='https://github.com/USF-IMARS/imars_dags',
tests_require=['pytest'],
install_requires=[
# 'git+https://git}@github.com/7yl4r/pycmr.git/@prod'
# TODO: add imars-etl here?
],
# cmdclass={'test': PyTest},
packages=['imars_dags']
)