-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
59 lines (46 loc) · 1.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
import os
import shutil
from setuptools import setup
import numpy
# clean previous build
for root, dirs, files in os.walk("./ProxNest/", topdown=False):
for name in dirs:
if name == "build":
shutil.rmtree(name)
from os import path
this_directory = path.abspath(path.dirname(__file__))
def read_requirements(file):
with open(file) as f:
return f.read().splitlines()
def read_file(file):
with open(file) as f:
return f.read()
long_description = read_file(".pip_readme.rst")
required = read_requirements("requirements/requirements-core.txt")
include_dirs = [
numpy.get_include(),
]
extra_link_args = []
setup(
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
],
name="ProxNest",
version="0.0.1",
prefix=".",
url="https://github.com/astro-informatics/proxnest",
author="Xiaohao Cai, Jason McEwen, Marcelo Pereyra, Matthew Price",
author_email="x.cai@soton.ac.uk",
license="GNU General Public License v3 (GPLv3)",
install_requires=required,
description="Proximal nested sampling for high-dimensional Bayesian model selection",
long_description_content_type="text/x-rst",
long_description=long_description,
packages=["ProxNest", "ProxNest.operators", "ProxNest.optimisations", "ProxNest.sampling"],
)