Skip to content

Commit 8b91206

Browse files
Fix the pip installation pipeline
1 parent 65740b0 commit 8b91206

File tree

3 files changed

+31
-4
lines changed

3 files changed

+31
-4
lines changed

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@ requires = [
99
"setuptools>=45",
1010
"setuptools_scm[toml]>=6.0",
1111
]
12+
13+
[tool.setuptools_scm]
14+
local_scheme = "dirty-tag"

setup.cfg

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,37 @@
55
[metadata]
66
name = robot-log-visualizer
77
description = Visualizer for robot logger
8-
author = 'Giulio Romualdi, Ines Sorrentino, Paolo Maria Viceconte'
9-
author_email = 'giulio.romualdi@iit.it, ines.sorrentino@iit.it, paolo.viceconte@iit.it'
8+
long_description = file: README.md
9+
long_description_content_type = text/markdown
10+
author = Giulio Romualdi
11+
author_email = giulio.romualdi@gmail.com
1012
license = BSD3
1113
license_file = LICENSE
1214
url = https://github.com/ami-iit/robot-log-visualizer
13-
version = 0.1.0
1415
platforms = any
1516

1617
keywords =
1718
robotics
1819
visualization
1920

21+
project_urls =
22+
Changelog = https://github.com/ami-iit/robot-log-visualizer/releases
23+
Tracker = https://github.com/ami-iit/robot-log-visualizer/issues
24+
Source = https://github.com/ami-iit/robot-log-visualizer
25+
26+
classifiers =
27+
Development Status :: 4 - Beta
28+
Operating System :: OS Independent
29+
Topic :: Scientific/Engineering :: Visualization
30+
Topic :: Software Development
31+
Framework :: Robot Framework
32+
Intended Audience :: Developers
33+
Intended Audience :: Science/Research
34+
Programming Language :: Python :: 3.8
35+
Programming Language :: Python :: 3.9
36+
Programming Language :: Python :: 3.10
37+
Programming Language :: Python :: 3 :: Only
38+
2039
[options]
2140
packages = find:
2241
python_requires = >=3.8
@@ -29,7 +48,12 @@ install_requires =
2948
pyqtconsole
3049
matplotlib
3150
h5py
51+
icub-models
52+
include_package_data = True
3253

3354
[options.entry_points]
3455
console_scripts =
3556
robot-log-visualizer = robot_log_visualizer.__main__:main
57+
58+
[options.package_data]
59+
* = *.png

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44

55
from setuptools import setup
66

7-
if __name__ == '__main__':
7+
if __name__ == "__main__":
88
setup()

0 commit comments

Comments
 (0)