File: setup.py

package info (click to toggle)
xdoctest 1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,512 kB
  • sloc: python: 10,963; sh: 815; cpp: 33; makefile: 19
file content (14 lines) | stat: -rwxr-xr-x 295 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python
"""
pip install --target="$(pwd)" .
"""
from setuptools import find_packages
from skbuild import setup


if __name__ == '__main__':
    setup(
        name="my_ext",
        install_requires=['scikit-build', 'cmake', 'pybind11'],
        packages=find_packages('.'),
    )