-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 623 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (24 loc) · 623 Bytes
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
import os
import sys
try:
from skbuild import setup
except ImportError:
print(
"Please update pip, you need pip 10 or greater,\n"
" or you need to install the PEP 518 requirements in pyproject.toml yourself",
file=sys.stderr,
)
raise
from setuptools import find_packages
setup(
name="rodin",
version="0.0.1",
description="Rodin Python bindings",
author="Carlos Brito-Pacheco",
license="Boost",
packages=find_packages(where="py"),
package_dir={"": "py"},
# cmake_install_dir="rodin/py",
include_package_data=True,
python_requires=">=3.6",
)