forked from dstl/Stone-Soup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.47 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
setup(name='stonesoup',
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',
setup_requires=['setuptools_scm', 'setuptools_scm_git_archive'],
use_scm_version=True,
install_requires=[
'ruamel.yaml>=0.15.45', 'numpy>=1.17', 'scipy', 'matplotlib', 'utm', 'pymap3d',
'setuptools>=42',
],
extras_require={
'dev': [
'pytest-flake8', 'pytest-cov', 'Sphinx', 'sphinx_rtd_theme',
'sphinx-gallery>=0.8', 'pillow', 'folium'],
'video': ['ffmpeg-python', 'moviepy'],
'tensorflow': ['tensorflow>=2.2.0'],
'tensornets': ['tensorflow>=2.2.0', 'tensornets'],
},
)