-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.24 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.24 KB
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
from setuptools import setup, find_packages
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='aruco_tool',
version='0.3.8',
description='Aruco Code pose detection package to make the process simpler and a little more organized.',
url='https://github.com/NotCras/aruco_tool/',
download_url='https://github.com/NotCras/aruco_tool/archive/refs/tags/v0.3.8.tar.gz',
author='John Morrow',
author_email='[email protected]',
license='MIT',
packages=['aruco_tool'],
keywords=['aruco', 'image'],
install_requires=['pandas',
'numpy',
'opencv-contrib-python',
'matplotlib'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
long_description=long_description,
long_description_content_type='text/markdown'
)