-
-
Notifications
You must be signed in to change notification settings - Fork 403
/
setup.py
80 lines (66 loc) · 2.58 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
import codecs
import os
import re
import setuptools
from setuptools import find_packages, setup
from setuptools.command.develop import develop
from setuptools.command.install import install
PROJECT_ROOT = os.path.dirname(os.path.realpath(__file__))
REQUIREMENTS_FILE = os.path.join(PROJECT_ROOT, "requirements.txt")
REQUIREMENTS_OPTIONAL_FILE = os.path.join(PROJECT_ROOT, "requirements-optional.txt")
REQUIREMENTS_DEV_FILE = os.path.join(PROJECT_ROOT, "requirements-dev.txt")
README_FILE = os.path.join(PROJECT_ROOT, "README.md")
VERSION_FILE = os.path.join(PROJECT_ROOT, "arviz", "__init__.py")
def get_requirements():
with codecs.open(REQUIREMENTS_FILE) as buff:
return buff.read().splitlines()
def get_requirements_dev():
with codecs.open(REQUIREMENTS_DEV_FILE) as buff:
return buff.read().splitlines()
def get_requirements_optional():
with codecs.open(REQUIREMENTS_OPTIONAL_FILE) as buff:
return buff.read().splitlines()
def get_long_description():
with codecs.open(README_FILE, "rt") as buff:
return buff.read()
def get_version():
lines = open(VERSION_FILE, "rt").readlines()
version_regex = r"^__version__ = ['\"]([^'\"]*)['\"]"
for line in lines:
mo = re.search(version_regex, line, re.M)
if mo:
return mo[1]
raise RuntimeError(f"Unable to find version in {VERSION_FILE}.")
setup(
name="arviz",
license="Apache-2.0",
version=get_version(),
description="Exploratory analysis of Bayesian models",
author="ArviZ Developers",
url="http://github.com/arviz-devs/arviz",
packages=find_packages(),
install_requires=get_requirements(),
extras_require={
"all": get_requirements_optional(),
"preview": ["arviz-base[h5netcdf]", "arviz-stats[xarray]", "arviz-plots"],
},
long_description=get_long_description(),
long_description_content_type="text/markdown",
include_package_data=True,
python_requires=">=3.10",
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Matplotlib",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Mathematics",
],
)