File tree Expand file tree Collapse file tree 2 files changed +17
-6
lines changed Expand file tree Collapse file tree 2 files changed +17
-6
lines changed Original file line number Diff line number Diff line change
1
+ [pytest]
2
+ # some folders to ignore:
3
+ # - testsuite is a integration method performance and accuracy test suite, not code correctness
4
+ # - shrinkageeval is code for Buchner (2014)'s statistical test for nested sampling, not code correctness
5
+ # - ultranest2 contains mostly toy codes at this point
6
+ addopts = --ignore =testsuite/ --ignore =nested_sampling/shrinkageeval/ --ignore =ultranest2/
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
+ # -*- coding: utf-8 -*-
2
3
3
- from distutils .core import setup
4
+ try :
5
+ from setuptools import setup
6
+ except :
7
+ from distutils .core import setup
4
8
5
- long_description = ''
6
- with open ('README.rst' ) as f :
7
- long_description = f .read ()
9
+ long_description = None
10
+ with open ('README.rst' ) as file :
11
+ long_description = file .read ()
8
12
9
- setup (name = 'nested_sampling' ,
13
+ setup (
14
+ name = 'nested_sampling' ,
10
15
version = '0.3' ,
11
16
url = 'https://github.com/JohannesBuchner/UltraNest' ,
12
17
author = 'Johannes Buchner' ,
23
28
],
24
29
setup_requires = ['pytest-runner' ],
25
30
tests_require = ['pytest' ],
26
- )
31
+ )
27
32
You can’t perform that action at this time.
0 commit comments