mirror of
https://github.com/nqrduck/LimeDriverBindings.git
synced 2024-11-16 07:21:02 +00:00
Kumi
9863cb7c25
Removed the version restrictions for setuptools and Cython from the project build system configuration to increase compatibility with broader ranges of environments. This change aims to simplify setup and prevent potential conflicts with other packages that require different versions.
21 lines
No EOL
496 B
TOML
21 lines
No EOL
496 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"
|
|
] |