-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
73 lines (58 loc) · 2.24 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# mypy: disable-error-code="import-untyped"
#!/usr/bin/env python
"""Setup script for the project."""
import os
import re
import shutil
import subprocess
from setuptools import find_packages, setup
from setuptools.command.build_ext import build_ext
from setuptools_rust import Binding, RustExtension
with open("README.md", "r", encoding="utf-8") as f:
long_description: str = f.read()
with open("actuator/requirements.txt", "r", encoding="utf-8") as f:
requirements: list[str] = f.read().splitlines()
with open("actuator/requirements-dev.txt", "r", encoding="utf-8") as f:
requirements_dev: list[str] = f.read().splitlines()
with open("Cargo.toml", "r", encoding="utf-8") as fh:
version_re = re.search(r"^version = \"([^\"]*)\"", fh.read(), re.MULTILINE)
assert version_re is not None, "Could not find version in Cargo.toml"
version: str = version_re.group(1)
class RustBuildExt(build_ext):
def run(self) -> None:
# Generate the stub file
subprocess.run(["cargo", "run", "--bin", "stub_gen"], check=True)
# Move the generated stub file to parent directory
src_file = "actuator/bindings/bindings.pyi"
dst_file = "actuator/bindings.pyi"
if os.path.exists(src_file) and not os.path.exists(dst_file):
shutil.move(src_file, dst_file)
if not os.path.exists(dst_file):
raise RuntimeError(f"Failed to generate {dst_file}")
if os.path.exists(src_file):
os.remove(src_file)
super().run()
setup(
name="actuator",
version=version,
description="Python interface for controlling various robotic actuators",
author="K-Scale Labs",
url="https://github.com/kscalelabs/actuator",
rust_extensions=[
RustExtension(
target="actuator.bindings",
path="actuator/bindings/Cargo.toml",
binding=Binding.PyO3,
),
],
setup_requires=["setuptools-rust"],
zip_safe=False,
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.11",
install_requires=requirements,
extras_require={"dev": requirements_dev},
include_package_data=True,
packages=find_packages(include=["actuator"]),
cmdclass={"build_ext": RustBuildExt},
)