-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.cfg
51 lines (46 loc) · 1.32 KB
/
setup.cfg
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
[metadata]
name = tailor-distro
version = attr: tailor_distro.__version__
url = http://tailor.locusbots.io
project_urls =
GitHub = https://github.com/locusrobotics/tailor-distro
author = Paul Bovbel
author_email = pbovbel@locusrobotics.com
maintainer = Paul Bovbel
maintainer_email = pbovbel@locusrobotics.com
license = Proprietary
description = Build bundles of ROS distributions.
long_description = file: README.md
[options]
python_requires = >=3.6
install_requires =
bloom ==0.11.2
catkin_pkg ==0.5.2
Click ==8.1.3
Jinja2 ==3.1.2
gitpython ==3.1.31
PyGithub ==1.58.1
PyYaml ==6.0
rosdistro ==0.9.0
packages = find:
setup_requires =
pytest-runner ==5.1
tests_require =
pytest ==5.1.3
pytest-mypy ==0.4.1
pytest-flake8 ==1.0.4
[options.entry_points]
console_scripts =
create_recipes = tailor_distro.create_recipes:main
pull_distro_repositories = tailor_distro.pull_distro_repositories:main
mirror_upstream = tailor_distro.mirror_upstream:main
generate_bundle_templates = tailor_distro.generate_bundle_templates:main
publish_packages = tailor_distro.publish_packages:main
tailor_manage = tailor_distro.manage:main
[aliases]
test=pytest
[tool:pytest]
addopts = --verbose --junitxml=test-results.xml --mypy --flake8
pep8maxlinelength = 120
[flake8]
max-line-length = 120