-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
76 lines (64 loc) · 2.22 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
71
72
73
74
75
76
#!/usr/bin/env python
import os
import sys
from setuptools.command.test import test as TestCommand
from setuptools import find_packages
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
# self.test_args
# self.test_suite = True
def run_tests(self):
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
#during runtime
requires = ["numpy",
"scipy>=0.15"]
#for testing
tests_require=['pytest>=2.3',
'mock']
PACKAGE_PATH = os.path.abspath(os.path.join(__file__, os.pardir))
setup(
name='abcpmc',
version='0.1.2',
description='approximate bayesian computing with population monte carlo',
long_description=readme + '\n\n' + history,
author='Joel Akeret',
author_email='[email protected]',
url='http://www.cosmology.ethz.ch/research/software-lab/abcpmc.html',
packages=find_packages(PACKAGE_PATH, "test"),
package_dir={'abcpmc': 'abcpmc'},
include_package_data=True,
install_requires=requires,
license="GPLv3",
zip_safe=False,
keywords=["abcpmc",
"approximate bayesian computing ",
"population monte carlo"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
'Intended Audience :: Developers',
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Astronomy",
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
],
tests_require=tests_require,
cmdclass = {'test': PyTest},
)