|
| 1 | +from pathlib import Path |
| 2 | + |
| 3 | +from setuptools import setup # type: ignore[import] |
| 4 | + |
| 5 | +long_description = (Path(__file__).parent / 'README.md').read_text() |
| 6 | + |
| 7 | +setup( |
| 8 | + name='webots-stubs', |
| 9 | + version='0.1.0', # TODO: version with the Webots version number? |
| 10 | + url='https://www.cyberbotics.com/', |
| 11 | + project_urls={ |
| 12 | + 'Issue tracker': 'https://github.com/cyberbotics/webots/issues', |
| 13 | + 'Source Code': 'https://github.com/cyberbotics/webots', |
| 14 | + }, |
| 15 | + description="Type stubs for Webots' 'controller' package.", |
| 16 | + long_description=long_description, |
| 17 | + long_description_content_type='text/markdown', |
| 18 | + |
| 19 | + package_data={'controller-stubs': ['*.pyi']}, |
| 20 | + packages=['controller-stubs'], |
| 21 | + |
| 22 | + license='Apache 2.0', |
| 23 | + |
| 24 | + classifiers=[ |
| 25 | + 'Development Status :: 2 - Pre-Alpha', |
| 26 | + 'Natural Language :: English', |
| 27 | + 'Operating System :: OS Independent', |
| 28 | + 'Programming Language :: Python', |
| 29 | + 'Programming Language :: Python :: 3 :: Only', |
| 30 | + 'Programming Language :: Python :: 3.7', |
| 31 | + 'Programming Language :: Python :: 3.8', |
| 32 | + 'Programming Language :: Python :: 3.9', |
| 33 | + 'Programming Language :: Python :: 3.10', |
| 34 | + 'Programming Language :: Python :: 3.11', |
| 35 | + 'Topic :: Software Development', |
| 36 | + ], |
| 37 | +) |
0 commit comments