-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
58 lines (53 loc) · 1.64 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
52
53
54
55
56
57
58
#!/usr/bin/env python3
"""
This file is kept for legacy pip compatibility only.
"""
from setuptools import setup
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.rst").read_text()
test_deps = [
"pytest",
"pytest-mock",
"pyfakefs",
]
extras = {
"test": test_deps,
}
setup(
name="robot_folders",
version="0.7.0",
python_requires=">=3",
description="robot_folders is your workspace handling utility around the ROS ecosystem.",
long_description=long_description,
long_description_content_type="text/x-rst",
packages=[
"robot_folders",
"robot_folders.commands",
"robot_folders.helpers",
"robot_folders.helpers.resources",
],
package_dir={"": "src"},
install_requires=["Click>=8.0", "gitpython", "inquirer", "PyYaml", "vcstool"],
entry_points="""
[console_scripts]
rob_folders=robot_folders.main:cli
""",
scripts=[
"bin/rob_folders_get_source_command.py",
"bin/rob_folders-complete.sh",
"bin/rob_folders_source.sh",
"bin/source_environment.sh",
],
include_package_data=True,
package_data={"": ["*.yaml"]},
license_files=("LICENSE.txt"),
tests_require=test_deps,
extras_require=extras,
project_urls={
"Documentation": "https://fzi-forschungszentrum-informatik.github.io/robot_folders/index.html",
"Changelog": "https://github.com/fzi-forschungszentrum-informatik/robot_folders/releases",
"Repository": "https://github.com/fzi-forschungszentrum-informatik/robot_folders.git",
},
)