-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 765 Bytes
/
setup.py
File metadata and controls
32 lines (28 loc) · 765 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except:
from distutils.core import setup
long_description = None
with open('README.rst') as file:
long_description = file.read()
setup(
name='nested_sampling',
version='0.3',
url='https://github.com/JohannesBuchner/UltraNest',
author='Johannes Buchner',
author_email='johannes.buchner.acad@gmx.com',
description='Nested Sampling testbed and benchmarking, UltraNest',
license = "GPLv3",
long_description=long_description,
packages=[
'nested_sampling',
'nested_sampling.samplers',
'nested_sampling.clustering',
'nested_sampling.samplers.svm',
#'nested_sampling.samplers.hamiltonian',
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
)