forked from t-kist/Bayesian-Statistics-for-Astrophysics-2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (23 loc) · 710 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
from os import path
from setuptools import find_packages, setup
if path.exists('README.md'):
with open('README.md') as readme:
long_description = readme.read()
setup(
name="bayes24",
version='0.0.dev0',
description="Course materials for Bayesian Statistics for Astrophysics 2024",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/t-kist/Bayesian-Statistics-for-Astrophysics-2024",
author='Timo Kist',
packages=find_packages(exclude=["tests"]),
install_requires=[
"numpy",
"scipy",
"matplotlib",
"ipython",
"jupyter"],
dependency_links=[],
scripts=[],
)