mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-01-19 21:37:57 +08:00
19 lines
621 B
Python
19 lines
621 B
Python
# Released under the MIT License. See LICENSE for details.
|
|
#
|
|
# pylint: disable=missing-module-docstring, invalid-name
|
|
from __future__ import annotations
|
|
|
|
# This file is exec'ed by the spinoff system, allowing us to define
|
|
# values and behavior for this feature-set here in a programmatic way
|
|
# that can also be type-checked alongside other project Python code.
|
|
|
|
from batools.featureset import FeatureSet
|
|
|
|
# Grab the FeatureSet we're defining here.
|
|
fset = FeatureSet.get_active()
|
|
|
|
# We're just a library of Python stuff; no C++ here.
|
|
fset.has_python_binary_module = False
|
|
|
|
fset.requirements = {'core', 'base', 'scene_v1'}
|