forked from robbles/mortar-luigi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (47 loc) · 1.22 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
try:
from setuptools import setup
except:
from distutils.core import setup
# Workaround for nose bug from: http://bugs.python.org/issue15881
try:
import multiprocessing
except ImportError:
pass
from distutils.core import setup
try:
long_description = []
for line in open('README.md'):
# Strip all images from the pypi description
if not line.startswith('!') and not line.startswith('```'):
long_description.append(line)
except IOError:
# Temporary workaround for pip install
long_description = ''
setup(name='mortar-luigi',
version='0.1.0',
description='Mortar Extensions for Luigi',
long_description=long_description,
author='Mortar Data',
author_email='[email protected]',
url='http://github.com/mortardata/mortar-luigi',
namespace_packages = [
'mortar'
],
packages=[
'mortar.luigi'
],
license='LICENSE.txt',
install_requires=[
'luigi',
'requests',
'boto==2.24.0',
'pymongo>=2.5',
'mortar-api-python'
],
test_suite="nose.collector",
tests_require=[
'mock',
'moto',
'nose>=1.3.0'
]
)