-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 793 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (28 loc) · 793 Bytes
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
from setuptools import setup
PKG_NAME = 'fgs_bayesian_filter'
setup(
name=PKG_NAME,
version='1.0.0',
packages=[PKG_NAME],
install_requires=['setuptools'],
zip_safe=True,
author='fugashy',
author_email='fugashy@icloud.com',
maintainer='fugashy',
maintainer_email='fugashy@icloud.com',
keywords=['ROS'],
classifiers=[
'Intended Audience :: Developers',
'License :: MIT :: MIT license',
'Programming Language :: Python',
'Topic :: Software Development',
],
description=('A package that provide bayasian filters such as kalman filter'),
license='MIT',
test_suite='test',
entry_points={
'console_scripts': [
'start = fgs_bayesian_filter.ros_entry_point:main',
],
},
)