Files
python-stub-generator/setup.py
7000pctAUTO 7243246152
Some checks failed
CI / test (push) Has been cancelled
Initial commit: Add python-stub-generator project
2026-01-30 04:51:43 +00:00

21 lines
417 B
Python

from setuptools import setup, find_packages
setup(
name="stubgen",
version="0.1.0",
packages=find_packages(),
install_requires=[
"click>=8.0",
"asttokens>=2.0",
"typing-extensions>=4.0",
],
extras_require={
"dev": ["pytest>=7.0", "pytest-cov"],
},
entry_points={
"console_scripts": [
"stubgen=stubgen.cli:main",
],
},
)