2019-05-11 23:00:22 -04:00
|
|
|
from datetime import datetime
|
|
|
|
from setuptools import setup
|
|
|
|
from pathlib import Path
|
2020-05-13 17:45:09 -04:00
|
|
|
import subprocess
|
|
|
|
import re
|
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")]
|
|
|
|
|
2020-05-13 17:45:09 -04:00
|
|
|
git_out = subprocess.check_output(["git", "describe", "--tags"])
|
|
|
|
version = git_out.strip().decode("utf-8")
|
|
|
|
|
|
|
|
# Detect a development build and mutate it to be valid semver and valid python version.
|
|
|
|
pieces = version.split("-")
|
|
|
|
if len(pieces) > 2:
|
|
|
|
# Merge the commit portion onto the commit count since the tag.
|
|
|
|
pieces[-2] += "+" + pieces[-1]
|
|
|
|
pieces.pop()
|
|
|
|
# Merge the commit count and build to the pre-release identifier.
|
|
|
|
pieces[-2] += ".dev." + pieces[-1]
|
|
|
|
pieces.pop()
|
|
|
|
version = "-".join(pieces)
|
|
|
|
|
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",
|
2020-05-13 17:45:09 -04:00
|
|
|
version=version,
|
2019-05-11 23:00:22 -04:00
|
|
|
license="MIT",
|
|
|
|
package_data={"circuitpython-stubs": stubs},
|
|
|
|
packages=["circuitpython-stubs"],
|
2020-05-13 17:45:09 -04:00
|
|
|
setup_requires=["setuptools>=38.6.0"],
|
2019-06-02 18:08:48 -04:00
|
|
|
)
|