-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·37 lines (35 loc) · 953 Bytes
/
setup.py
File metadata and controls
executable file
·37 lines (35 loc) · 953 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
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python3
from setuptools import setup
import numpy
import os
NAME = "bootstrap_resample"
VERSION = 0.1
setup(
name=NAME,
description="Bootstrap resampling class for Pandas.DataFrames",
version=VERSION,
url="https://github.com/cancerevo/bootstrap_resample",
author="Christopher McFarland",
author_email="christopher.mcfarland@case.edu",
license="MIT",
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Cython',
"Development Status :: 2 - Pre-Alpha",
'License :: OSI Approved :: MIT License',
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
packages=[NAME],
install_requires=[
"numpy",
"scipy",
"pandas",
"progressbar2",
# "cython",
# "tzlocal",
"joblib",
],
python_requires="~=3.2",
)