forked from uzh-rpg/pySeqSLAM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (43 loc) · 1.7 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
41
42
43
44
45
46
47
48
49
'''
Python implementation of SeqSLAM by Michael Milford. Performs place recognition by matching sequences of images.
'''
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
# This is a plug-in for setuptools that will invoke py.test
# when you run python setup.py test
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytest # import here, because outside the required eggs aren't loaded yet
sys.exit(pytest.main(self.test_args))
version = "0.1"
setup(name="pySeqSLAM",
version=version,
description="Python implementation of SeqSLAM by Michael Milford. Performs place recognition by matching sequences of images.",
long_description=open("README.md").read(),
classifiers=[ # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 1 - Planning',
'Programming Language :: Python'
],
keywords="place recognition, SeqSLAM", # Separate with spaces
author="",
author_email="",
url="",
license="MIT",
packages=find_packages(exclude=['examples', 'tests']),
include_package_data=True,
zip_safe=True,
tests_require=['pytest'],
cmdclass={'test': PyTest},
# TODO: List of packages that this one depends upon:
install_requires=['scipy', 'numpy', 'matplotlib', 'Pillow'],
# TODO: List executable scripts, provided by the package (this is just an example)
entry_points={
'console_scripts':
['pySeqSLAM=pyseqslam:main']
}
)