-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
28 lines (27 loc) · 1.04 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
from setuptools import find_packages, setup
setup(
name="rosidl_generator_mypy",
version="0.1.0",
packages=find_packages(exclude=["tests"]),
description="Generate stub files for the ROS2 interfaces in Python",
long_description=open("README.rst").read(),
author="Yuki Igarashi, Tamamki Nishino",
author_email="[email protected], [email protected]",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python",
],
license="Apache License 2.0",
url="https://github.com/rospypi/rosidl_generator_mypy",
include_package_data=True,
zip_safe=False,
)