File: pyproject.toml

package info (click to toggle)
basis-universal 2.0.2-3
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 216,436 kB
  • sloc: cpp: 163,224; ansic: 51,368; python: 2,824; javascript: 2,637; lisp: 1,026; sh: 161; makefile: 17
file content (44 lines) | stat: -rw-r--r-- 929 bytes parent folder | download
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
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "basisu-py"
version = "0.2.0"
description = "Python bindings for Basis Universal encoder/transcoder v2.x with native + WASM backend"
authors = [
    { name = "Binomial LLC", email = "stephanie@binomial.info" }
]
license = { text = "Apache 2.0" }
readme = "README.md"
requires-python = ">=3.8"

dependencies = [
    "numpy",
    "Pillow",
    "imageio>=2.22",
    "wasmtime",
]

classifiers = [
    "Programming Language :: Python :: 3",
    "Programming Language :: C++",
    "Operating System :: OS Independent",
    "License :: OSI Approved :: Apache Software License",
]

[tool.setuptools]
include-package-data = true

[tool.setuptools.packages.find]
include = ["basisu_py*"]

[tool.setuptools.package-data]
basisu_py = [
    "*.so",
    "*.pyd",
    "*.py",
    "wasm/*.wasm",
    "wasm/*.py",
    "README.md",
]