-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (45 loc) · 1.46 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
import os
import shutil
from setuptools import setup
from os import path
import numpy
# clean previous build
for root, dirs, files in os.walk("./QuantifAI/", topdown=False):
for name in dirs:
if name == "build":
shutil.rmtree(name)
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
],
name="quantifai",
version="1.0.0",
prefix=".",
url="https://github.com/tobias-liaudat/QuantifAI",
author="Tobias Liaudat",
author_email="[email protected]",
license="GNU General Public License v3 (GPLv3)",
install_requires=required,
description="Scalable Bayesian uncertainty quantification with data-driven priors for radio interferometric imaging",
long_description_content_type="text/x-rst",
long_description=long_description,
packages=["quantifai"],
)