-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.08 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
import glob
import re
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
with open("barb/__init__.py", "r") as f:
vf = f.read()
version = re.search(r"^_*version_* = ['\"]([^'\"]*)['\"]", vf, re.M).group(1)
setup(
name="barb",
version=version,
packages=find_packages(),
url="https://github.com/MorganWaddy/barb",
author="Morgan Waddy",
scripts=glob.glob("bin/*py"),
author_email="[email protected]",
license="",
long_description=long_description,
description="Bayesian Rate Estimation for FRBs",
install_requires=[
"astropy",
"numpy",
"matplotlib",
"tqdm",
"scipy",
"emcee",
"corner",
"h5py",
],
python_requires=">=3.6",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
],
)