-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsetup.py
executable file
·24 lines (22 loc) · 1010 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
#!/usr/bin/env python
import re
from setuptools import setup
# Synchronize version from code.
version = re.findall(r"__version__ = \"(.*?)\"", open("nestle.py").read())[0]
setup(name="nestle",
version=version,
description=("Nested sampling algorithms for evaluating "
"Bayesian evidence"),
long_description=("Package documentation: "
"http://kbarbary.github.io/nestle"),
classifiers = ["Development Status :: 4 - Beta",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Astronomy",
"Intended Audience :: Science/Research"],
py_modules=["nestle"],
url="http://github.com/kbarbary/nestle",
author="Kyle Barbary",
author_email="[email protected]")