-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
37 lines (28 loc) · 1.17 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
from xml.dom import minidom
from setuptools import setup
POSTFIX = ''
version = minidom.parse('apriltags/package.xml').getElementsByTagName("version")[0].childNodes[0].data
description = """
dt_apriltags: Python bindings for the Apriltags library
=======================================================
These are Python bindings for the
`Apriltags <https://github.com/AprilRobotics/apriltags>`__ library
developed by `AprilRobotics <https://april.eecs.umich.edu/>`__. Inspired
by the `Apriltags2 bindings <https://github.com/swatbotics/apriltag>`__
by `Matt Zucker <https://github.com/mzucker>`__.
The original library is published with a `BSD 2-Clause
license <https://github.com/AprilRobotics/apriltag/blob/master/LICENSE.md>`__.
You can find more information on how to use this library in the
GitHub `repository <https://github.com/duckietown/dt-apriltags>`_.
"""
setup(
name='dt_apriltags',
version=version+POSTFIX,
author='Aleksandar Petrov',
author_email='[email protected]',
url="https://github.com/duckietown/lib-dt-apriltags",
install_requires=['numpy'],
packages=['dt_apriltags'],
long_description=description,
include_package_data=True
)