-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (34 loc) · 1.07 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
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="aruco_markers",
description="A compact Python package for handling ArUCo markers.",
long_description=long_description,
long_description_content_type="text/markdown",
version="1.1.6",
author="Christopher E. Mower",
author_email="[email protected]",
url="https://github.com/cmower/aruco_markers",
packages=["aruco_markers"],
license="Apache License 2.0",
entry_points={
"console_scripts": [
"aruco = aruco_markers.main:main",
],
},
project_urls={
"Homepage": "https://cmower.github.io/aruco_markers/",
"Documentation": "https://cmower.github.io/aruco_markers/",
"Bug Tracker": "https://github.com/cmower/aruco_markers/issues",
"Source": "https://github.com/cmower/aruco_markers",
},
install_requires=[
"opencv-contrib-python",
"numpy",
"matplotlib",
"scipy",
"reportlab",
"attrs",
],
)