Initial commit: Add python-stub-generator project
Some checks failed
CI / test (push) Has been cancelled
Some checks failed
CI / test (push) Has been cancelled
This commit is contained in:
20
setup.py
Normal file
20
setup.py
Normal file
@@ -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",
|
||||
],
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user