mirror of
https://github.com/nqrduck/LimeDriverBindings.git
synced 2024-11-05 18:20:03 +00:00
Kumi
1f24eb3f64
- Standardized the C++ compiler across build environments by setting it in `setup.py`, ensuring consistent compilation of Cython extensions. - Transitioned to using `setuptools.build_meta` as the build backend in `pyproject.toml` for enhanced package build processes. - Modified the extension module path in `setup.py` to align with the new Python binding structure. - Introduced Python property decorators to `PyLimeConfig` class in `limedriver.pyx` for getter methods, enhancing the Pythonic interface of the Cython module. - Facilitated direct import of the binding in `__init__.py`, streamlining the usage of the `limedriver` package.
23 lines
No EOL
537 B
TOML
23 lines
No EOL
537 B
TOML
[project]
|
|
name = "limedriver"
|
|
version = "0.1.0"
|
|
description = "Python bindings for limedriver"
|
|
authors = [{name = "Kumi", email = "limedriver@kumi.email"}]
|
|
license = {file = "LICENSE"}
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"Topic :: Software Development :: Build Tools",
|
|
"Programming Language :: Python :: 3",
|
|
]
|
|
|
|
[build-system]
|
|
requires = [
|
|
"setuptools",
|
|
"wheel",
|
|
"Cython"
|
|
]
|
|
|
|
build-backend = "setuptools.build_meta" |