File: setup.py

package info (click to toggle)
opencamlib 2023.01.11-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 29,800 kB
  • sloc: cpp: 8,722; python: 5,530; sh: 604; javascript: 310; makefile: 209
file content (10 lines) | stat: -rw-r--r-- 216 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
from skbuild import setup

setup(
  name='opencamlib',
  packages=['opencamlib'],
  package_dir={'opencamlib': 'src/pythonlib/opencamlib'},
  include_package_data=True,
  zip_safe=False,
  python_requires='>=3.6',
)