-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
70 lines (61 loc) · 2.91 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python
"""
perfectns setup module.
Based on https://github.com/pypa/sampleproject/blob/master/setup.py.
"""
import os
import setuptools
def get_package_dir():
"""Get the file path for dyPolyChord's directory."""
return os.path.abspath(os.path.dirname(__file__))
def get_long_description():
"""Get PyPI long description from its own .rst file as PyPI does not render
the README well."""
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as readme_file:
long_description = readme_file.read()
return long_description
def get_version():
"""Get single-source __version__."""
pkg_dir = get_package_dir()
with open(os.path.join(pkg_dir, 'perfectns/_version.py')) as ver_file:
string = ver_file.read()
return string.strip().replace('__version__ = ', '').replace('\'', '')
setuptools.setup(name='perfectns',
version=get_version(),
description=('Dynamic and standard nested sampling '
'for spherically symmetric likelihoods and '
'priors.'),
long_description=get_long_description(),
long_description_content_type='text/x-rst',
url='https://github.com/ejhigson/perfectns',
author='Edward Higson',
license='MIT',
keywords='nested-sampling dynamic-nested-sampling',
classifiers=[ # Optional
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Scientific/Engineering :: Information Analysis',
],
packages=['perfectns'],
install_requires=['numpy>=1.13',
'scipy>=1.0.0',
'pandas',
'matplotlib>=2.1.0',
'mpmath',
'nestcheck>=0.1.2'],
test_suite='nose.collector',
extras_require={
'docs': ['sphinx', 'numpydoc', 'sphinx-rtd-theme',
'nbsphinx>=0.3.3']},
tests_require=['nose', 'coverage'],
project_urls={ # Optional
'Docs': 'http://perfectns.readthedocs.io/en/latest/'})