Use rst2pyi to generate type stubs and package
parent
63b253c33a
commit
7f7665c1c0
@ -0,0 +1 @@
|
||||
rst2pyi=0.1.0
|
@ -0,0 +1,22 @@
|
||||
from datetime import datetime
|
||||
from setuptools import setup
|
||||
from pathlib import Path
|
||||
|
||||
stub_root = Path("circuitpython-stubs")
|
||||
stubs = [p.relative_to(stub_root).as_posix() for p in stub_root.glob("*.pyi")]
|
||||
|
||||
now = datetime.utcnow()
|
||||
version = now.strftime("%Y.%m.%d")
|
||||
|
||||
setup(
|
||||
name="circuitpython-stubs",
|
||||
description="PEP 561 type stubs for CircuitPython",
|
||||
url="https://github.com/adafruit/circuitpython",
|
||||
author="John Reese",
|
||||
author_email="john@noswap.com",
|
||||
version=version,
|
||||
license="MIT",
|
||||
package_data={"circuitpython-stubs": stubs},
|
||||
packages=["circuitpython-stubs"],
|
||||
setup_requires=["setuptools>=38.6.0"],
|
||||
)
|
Loading…
Reference in New Issue