-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1005 Bytes
/
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
from setuptools import setup, find_packages
from lilit import __version__
setup(
name="lilit",
version=__version__,
description="A Python package encoding a likelihood for LiteBIRD.",
license="GNU General Public License v3.0",
license_files=["LICENSE"],
author="Galloni, Giacomo",
author_email="[email protected]",
packages=["lilit"],
package_dir={"lilit": "lilit"},
package_data={"lilit": ["experiments.yaml", "planck_2018.ini"]},
url="https://github.com/ggalloni/LiLit",
keywords="bayesian-statistics, markov-chain-mote-carlo, cosmic-microwave-background, cobaya",
install_requires=[
"cobaya",
"numpy",
"healpy",
"pyyaml",
"matplotlib",
"camb",
],
setup_requires=[
"cobaya",
"numpy",
"healpy",
"pyyaml",
"matplotlib",
"camb",
],
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
)