-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
47 lines (41 loc) · 1.1 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
#
# Copyright (c) 2017 Two Sigma Investments, LP
# All Rights Reserved
#
# THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF
# Two Sigma Investments, LP.
#
# The copyright notice above does not evidence any
# actual or intended publication of such source code.
#
from setuptools import setup
import versioneer
def readme():
with open('README.md', 'r') as f:
return f.read()
setup(
name='marbles',
packages=['marbles'],
test_suite='tests',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
setup_requires=[
'coverage',
'flake8',
'Sphinx',
'sphinx_rtd_theme'
],
install_requires=[
'pandas<0.21,>=0.19.1',
'numpy<1.14,>=1.12.1'
],
tests_require=[
'coverage'
],
description=('A unittest extension that provides additional '
'information on test failure'),
long_description=readme(),
author=['Jane Adams', 'Leif Walsh'],
author_email=['jane@twosigma.com', 'leif@twosigma.com'],
url='https://gitlab.twosigma.com/jane/marbles'
)