diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..c9ba503 --- /dev/null +++ b/setup.py @@ -0,0 +1,20 @@ +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", + ], + }, +)