-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (27 loc) · 920 Bytes
/
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
from setuptools import setup
import os
here = os.path.abspath(os.path.dirname(__file__))
exec(open(os.path.join(here, 'bayesfilter/version.py')).read())
setup(
name='bayesfilter',
version=__version__,
packages=['bayesfilter'],
install_requires=[
'numpy',
],
license='MIT',
author='Hugo Hadfield',
author_email="[email protected]",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
description="A pure Python/NumPy library for Bayesian filtering and smoothing",
url="https://github.com/hugohadfield/bayesfilter",
python_requires='>=3.6',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Mathematics',
],
)