-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
54 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
"./src/python" | ||
], | ||
"files.associations": { | ||
"tuple": "cpp" | ||
"tuple": "cpp", | ||
"array": "cpp" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" | |
|
||
[tool.poetry] | ||
name = "PyCXpress" | ||
version = "0.0.2" | ||
version = "0.0.3" | ||
description = "PyCXpress is a high-performance hybrid framework that seamlessly integrates Python and C++ to harness the flexibility of Python and the speed of C++ for efficient and expressive computation, particularly in the realm of deep learning and numerical computing." | ||
readme = "README.md" | ||
authors = ["chaoqing <[email protected]>"] | ||
|
@@ -15,17 +15,13 @@ homepage = "https://github.com/chaoqing/PyCXpress" | |
packages = [ | ||
{ include = "PyCXpress", from = "src" }, | ||
] | ||
include = [ | ||
{ path = "src/cpp/", format = ["sdist", "wheel"] }, | ||
{ path = "example/", format = ["sdist", "wheel"] }, | ||
] | ||
|
||
|
||
# Keywords description https://python-poetry.org/docs/pyproject/#keywords | ||
keywords = [] #! Update me | ||
keywords = ["CPP", "Embdedding"] | ||
|
||
# Pypi classifiers: https://pypi.org/classifiers/ | ||
classifiers = [ #! Update me | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"Operating System :: OS Independent", | ||
|
@@ -38,7 +34,7 @@ classifiers = [ #! Update me | |
|
||
[tool.poetry.scripts] | ||
# Entry points for the package https://python-poetry.org/docs/pyproject/#scripts | ||
"PyCXpress" = "PyCXpress.__main__:main" | ||
"pycxpress" = "PyCXpress.__main__:main" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
|
@@ -144,7 +140,7 @@ addopts = [ | |
source = ["tests"] | ||
|
||
[coverage.paths] | ||
source = "PyCXpress" | ||
source = "src" | ||
|
||
[coverage.run] | ||
branch = true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,2 @@ | ||
click==8.1.7 ; python_version >= "3.8" and python_version < "4.0" | ||
colorama==0.4.6 ; python_version >= "3.8" and python_version < "4.0" and platform_system == "Windows" | ||
markdown-it-py==3.0.0 ; python_version >= "3.8" and python_version < "4.0" | ||
mdurl==0.1.2 ; python_version >= "3.8" and python_version < "4.0" | ||
pygments==2.17.2 ; python_version >= "3.8" and python_version < "4.0" | ||
rich==13.7.1 ; python_version >= "3.8" and python_version < "4.0" | ||
shellingham==1.5.4 ; python_version >= "3.8" and python_version < "4.0" | ||
typer[all]==0.12.3 ; python_version >= "3.8" and python_version < "4.0" | ||
typing-extensions==4.11.0 ; python_version >= "3.8" and python_version < "4.0" | ||
numpy==1.24.4 ; python_version >= "3.8" and python_version < "4.0" | ||
pybind11==2.12.0 ; python_version >= "3.8" and python_version < "4.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.