-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
31 lines (28 loc) · 988 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, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
exec(open(os.path.join(here, 'kalmangrad/version.py')).read())
setup(
name='kalmangrad',
# Read from VERSION file
version=__version__,
description="Automated, smooth, N'th order derivatives of non-uniformly sampled time series data",
author='Hugo Hadfield',
author_email='[email protected]',
url='https://github.com/hugohadfield/kalmangrad',
packages=find_packages(),
install_requires=[
'numpy',
'bayesfilter',
],
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: MIT License',
],
python_requires='>=3.6',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
)