forked from dstl/Stone-Soup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.36 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from stonesoup import __version__ as version
with open('README.md') as f:
long_description = f.read()
setup(name='stonesoup',
version=version,
maintainer='Defence Science and Technology Laboratory UK',
maintainer_email='[email protected]',
url='https://github.com/dstl/Stone-Soup',
description='A tracking and state estimation framework',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
],
packages=find_packages(exclude=('docs', '*.tests')),
python_requires='>=3.6',
install_requires=[
'ruamel.yaml>=0.15.45', 'numpy>=1.17', 'scipy', 'matplotlib', 'utm', 'pymap3d'],
extras_require={
'dev': [
'pytest-flake8', 'pytest-cov', 'Sphinx', 'sphinx_rtd_theme',
'setuptools>=30', 'sphinx-gallery>=0.8', 'pillow', 'folium'],
'video': ['ffmpeg-python', 'moviepy'],
'tensorflow': ['tensorflow>=2.2.0']
},
)