-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 764 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 764 Bytes
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
from setuptools import setup
def read(fname):
import os
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='jackknife',
version='0.1.0',
description=(
'Jackknife resampling, parameter estimation and stability test'),
long_description=read('README.md'),
long_description_content_type='text/markdown',
url='http://github.com/kmedian/jackknife',
author='Ulf Hamster',
author_email='554c46@gmail.com',
license='MIT',
packages=['jackknife'],
install_requires=[
'setuptools>=40.0.0',
'nose>=1.3.7',
'numpy>=1.14.5',
'scipy>=1.1.0',
'more-itertools>=4.3.0'],
python_requires='>=3.6',
zip_safe=False)