-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
executable file
·47 lines (42 loc) · 1.76 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
import os.path
from support import determine_pybayes_version
from support.dist import PyBayesDistribution
dir = os.path.dirname(os.path.realpath(__file__))
version = determine_pybayes_version(dir=dir, fallback='0.3-post-nongit')
with open(os.path.join(dir ,'README.rst')) as file:
long_description = file.read()
setup(
packages=['pybayes', 'pybayes.stresses', 'pybayes.tests', 'pybayes.wrappers'],
package_data={'pybayes.stresses':['data/stress_kalman_data.mat']},
distclass=PyBayesDistribution,
# meta-data; see http://docs.python.org/distutils/setupscript.html#additional-meta-data
name='PyBayes',
version=version,
author='Matěj Laitl',
author_email='[email protected]',
maintainer='Matěj Laitl',
maintainer_email='[email protected]',
url='https://github.com/strohel/PyBayes',
description='Python library for recursive Bayesian estimation (Bayesian filtering)',
long_description=long_description,
# Note to myself: must manually upload on each release!
download_url='https://github.com/downloads/strohel/PyBayes/PyBayes-'+version+'.tar.gz',
platforms='cross-platform',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Cython',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)