Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
24 lines (20 loc) · 723 Bytes

File metadata and controls

24 lines (20 loc) · 723 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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 pathlib import Path
from setuptools_scm import get_version
from skbuild import setup
project_name = "xt"
this_directory = Path(__file__).parent
long_description = (this_directory / ".." / "README.md").read_text()
license = (this_directory / ".." / "LICENSE").read_text()
setup(
name=project_name,
description="xt - Python bindings of xtensor",
long_description=long_description,
version=get_version(root="..", relative_to=__file__),
license=license,
author="Tom de Geus",
url=f"ttps://github.com/xtensor-stack/{project_name}",
packages=[f"{project_name}"],
package_dir={"": "module"},
cmake_install_dir=f"module/{project_name}",
cmake_minimum_required_version="3.13",
)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.