forked from nteract/papermill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
105 lines (89 loc) · 3.24 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#!/usr/bin/env python
# -*- coding: utf-8 -*-
""""
setup.py
See:
https://packaging.python.org/tutorials/packaging-projects/
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
from __future__ import print_function
import os
import sys
from os import path
from setuptools import setup
# io.open is needed for projects that support Python 2.7
# It ensures open() defaults to text mode with universal newlines,
# and accepts an argument to specify the text encoding
# Python 3 only projects can skip this import
from io import open
local_path = os.path.dirname(__file__)
# Fix for tox which manipulates execution pathing
if not local_path:
local_path = '.'
here = path.abspath(local_path)
def version():
with open(here + '/papermill/version.py', 'r') as ver:
for line in ver.readlines():
if line.startswith('version ='):
return line.split(' = ')[-1].strip()[1:-1]
raise ValueError('No version found in papermill/version.py')
python_2 = sys.version_info[0] == 2
def read(fname):
with open(fname, 'rU' if python_2 else 'r') as fhandle:
return fhandle.read()
def read_reqs(fname):
req_path = os.path.join(here, fname)
return [req.strip() for req in read(req_path).splitlines() if req.strip()]
s3_reqs = read_reqs('requirements-s3.txt')
azure_reqs = read_reqs('requirements-azure.txt')
gcs_reqs = read_reqs('requirements-gcs.txt')
hdfs_req = read_reqs('requirements-hdfs.txt')
sftp_req = read_reqs('requirements-sftp.txt')
all_reqs = read_reqs('requirements.txt') + s3_reqs + azure_reqs + gcs_reqs + sftp_req + hdfs_req
dev_reqs = read_reqs('requirements-dev.txt') + all_reqs
extras_require = {
"test": dev_reqs,
"dev": dev_reqs,
"all": all_reqs,
"hdfs": hdfs_req,
"sftp": sftp_req,
"s3": s3_reqs,
"azure": azure_reqs,
"gcs": gcs_reqs,
}
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='papermill',
version=version(),
description='Parametrize and run Jupyter and nteract Notebooks',
author='nteract contributors',
author_email='[email protected]',
license='BSD',
# Note that this is a string of words separated by whitespace, not a list.
keywords='jupyter mapreduce nteract pipeline notebook',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/nteract/papermill',
packages=['papermill'],
install_requires=all_reqs,
extras_require=extras_require,
entry_points={'console_scripts': ['papermill = papermill.cli:papermill']},
project_urls={
'Documentation': 'https://papermill.readthedocs.io',
'Funding': 'https://nteract.io',
'Source': 'https://github.com/nteract/papermill/',
'Tracker': 'https://github.com/nteract/papermill/issues',
},
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.7',
],
)