forked from facebookarchive/bootstrapped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (34 loc) · 1.06 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
from pathlib import Path
from setuptools import setup
def read_version():
with (Path(__file__).with_name("bootstrapped") / "__init__.py").open() as fd:
for line in fd:
if line.startswith("__version__ = "):
return line.split()[-1].strip().strip('"')
setup(
name="bootstrapped-ng",
version=read_version(),
description="Implementations of the percentile based bootstrap - forked",
long_description=open("README.rst").read(),
author="Spencer Beecher",
author_email="[email protected]",
maintainer="Vadim Markovtsev",
maintainer_email="[email protected]",
packages=["bootstrapped"],
install_requires=[
"numpy>=1.11.1",
"scipy>=0.19.1",
],
extras_require={
"power": [
"matplotlib>=1.5.3",
"pandas>=0.18.1",
],
},
python_requires=">=3.10.0",
url="https://github.com/athenianco/bootstrapped",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
],
)