-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
51 lines (48 loc) · 1.68 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
50
51
import os
import setuptools
root_dir = os.path.dirname(os.path.realpath(__file__))
# dependencies
INSTALL_REQUIRES = [
"torch>=1.13.1",
"tensorboard",
"matplotlib",
"tqdm",
"pyvista",
"imageio-ffmpeg",
]
setuptools.setup(
name="pypolo",
version="0.0.4",
author="PyPolo Developers",
author_email="[email protected]",
description="PyPolo: A Python Library for Robotic Information Gathering",
long_description=open(os.path.join(root_dir, "README.md")).read(),
long_description_content_type="text/markdown",
keywords=[
"robotics", "machine", "learning", "information", "gathering",
"planning", "acquisition", "exploration", "active"
],
python_requires='>=3.6',
install_requires=INSTALL_REQUIRES,
url="https://github.com/Weizhe-Chen/PyPolo",
packages=setuptools.find_packages(exclude=['tests']),
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
license='MIT',
project_urls={
"Documentation": "https://pypolo.readthedocs.io",
"Repository": "https://github.com/Weizhe-Chen/PyPolo",
"Bug Tracker": "https://github.com/Weizhe-Chen/PyPolo/issues",
"Discussions": "https://github.com/Weizhe-Chen/PyPolo/discussions",
},
)