File: setup.py

package info (click to toggle)
python-opencascade-pywrap 0.0~git20250714210719.b608b60-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 12,992 kB
  • sloc: python: 1,622; pascal: 32; makefile: 13; sh: 1
file content (24 lines) | stat: -rwxr-xr-x 473 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup

setup(
    name="pywrap",
    version="0.1dev",
    entry_points={"console_scripts": "pywrap = bindgen.__main__:main"},
    packages=["bindgen"],
    include_package_data=True,
    install_requires=[
        "click",
        "logzero",
        "path",
        "clang",
        "toml",
        "pandas",
        "joblib",
        "tqdm",
        "jinja2",
        "toposort",
        "pyparsing",
        "pybind11",
        "schema",
    ],
)