2020-06-03 18:40:05 -04:00
|
|
|
# SPDX-FileCopyrightText: 2014 MicroPython & CircuitPython contributors (https://github.com/adafruit/circuitpython/graphs/contributors)
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: MIT
|
2021-06-01 21:38:56 -04:00
|
|
|
import os
|
|
|
|
import site
|
2019-05-11 23:00:22 -04:00
|
|
|
from datetime import datetime
|
2021-06-19 13:33:34 -04:00
|
|
|
from typing import Dict, List
|
2021-06-01 21:38:56 -04:00
|
|
|
|
2019-05-11 23:00:22 -04:00
|
|
|
from setuptools import setup
|
|
|
|
from pathlib import Path
|
2021-06-19 13:33:34 -04:00
|
|
|
|
|
|
|
STD_PACKAGES = set(('array', 'math', 'os', 'random', 'struct', 'sys', 'ssl', 'time'))
|
2019-05-11 23:00:22 -04:00
|
|
|
|
|
|
|
stub_root = Path("circuitpython-stubs")
|
|
|
|
stubs = [p.relative_to(stub_root).as_posix() for p in stub_root.glob("*.pyi")]
|
|
|
|
|
2021-06-19 13:33:34 -04:00
|
|
|
def local_scheme(version):
|
|
|
|
return ""
|
2020-05-13 17:45:09 -04:00
|
|
|
|
2021-06-19 13:33:34 -04:00
|
|
|
packages = set(os.listdir("circuitpython-stubs")) - STD_PACKAGES
|
|
|
|
package_dir = dict((f"{package}-stubs", f"circuitpython-stubs/{package}")
|
|
|
|
for package in packages)
|
|
|
|
print("package dir is", package_dir)
|
2020-05-13 17:45:09 -04:00
|
|
|
|
2021-06-19 13:33:34 -04:00
|
|
|
def build_package_data() -> Dict[str, List[str]]:
|
|
|
|
result = {}
|
|
|
|
for package in packages:
|
|
|
|
result[f"{package}-stubs"] = ["*.pyi", "*/*.pyi"]
|
2021-06-01 21:38:56 -04:00
|
|
|
return result
|
|
|
|
|
2021-06-19 13:33:34 -04:00
|
|
|
package_data=build_package_data()
|
2019-05-11 23:00:22 -04:00
|
|
|
setup(
|
|
|
|
name="circuitpython-stubs",
|
|
|
|
description="PEP 561 type stubs for CircuitPython",
|
|
|
|
url="https://github.com/adafruit/circuitpython",
|
2019-06-02 18:08:48 -04:00
|
|
|
maintainer="CircuitPythonistas",
|
2020-05-13 17:45:09 -04:00
|
|
|
maintainer_email="circuitpython@adafruit.com",
|
2019-06-02 18:08:48 -04:00
|
|
|
author_email="circuitpython@adafruit.com",
|
2019-05-11 23:00:22 -04:00
|
|
|
license="MIT",
|
2021-06-19 13:33:34 -04:00
|
|
|
packages=list(package_data.keys()),
|
|
|
|
package_data=package_data,
|
|
|
|
package_dir = package_dir,
|
|
|
|
setup_requires=["setuptools_scm", "setuptools>=38.6.0"],
|
|
|
|
use_scm_version={"local_scheme": local_scheme},
|
|
|
|
zip_safe=False,
|
2019-06-02 18:08:48 -04:00
|
|
|
)
|