-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (54 loc) · 1.77 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
from setuptools import setup, find_packages
import os
# Read the contents of README.md
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="rose-bag",
version="0.1.1",
author="Lingfeng_ai",
author_email="[email protected]", # Please update with your email
description="A modern TUI tool for ROS bag file analysis and visualization",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hanxiaomax/rose", # Please update with your repository URL
packages=find_packages(),
include_package_data=True,
install_requires=[
"textual>=0.40.0",
"rosbags>=0.9.16",
"rich>=13.0.0",
"typer>=0.9.0",
"pydantic>=2.0.0",
],
entry_points={
"console_scripts": [
"rose=roseApp.rose:cli",
],
},
package_data={
"roseApp": [
"style.tcss",
"config.json",
"themes/*.py",
"whitelists/*",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.8",
keywords="ros, bag, tui, visualization, robotics",
)