fix 3rdparty path for cython
This commit is contained in:
parent
74c8027a10
commit
0d94c7064a
12
README.md
12
README.md
@ -316,13 +316,19 @@ meta-data and provide these headers for usage in file output (see this
|
|||||||
|
|
||||||
### Packaging
|
### Packaging
|
||||||
|
|
||||||
|
#### Documentation
|
||||||
|
|
||||||
- https://packaging.python.org/tutorials/packaging-projects/
|
- https://packaging.python.org/tutorials/packaging-projects/
|
||||||
- https://medium.com/swlh/distributing-python-packages-protected-with-cython-40fc29d84caf
|
|
||||||
- https://levelup.gitconnected.com/how-to-deploy-a-cython-package-to-pypi-8217a6581f09
|
|
||||||
- https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html
|
- https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html
|
||||||
- https://test.pypi.org/account/register/
|
- https://test.pypi.org/account/register/
|
||||||
- https://malramsay.com/post/perils-of-packaging/
|
|
||||||
- https://github.com/pypa/auditwheel
|
- https://github.com/pypa/auditwheel
|
||||||
- https://github.com/pypa/python-manylinux-demo
|
- https://github.com/pypa/python-manylinux-demo
|
||||||
- https://github.com/pypa/manylinux
|
- https://github.com/pypa/manylinux
|
||||||
|
|
||||||
|
#### Articles
|
||||||
|
|
||||||
|
- https://martinsosic.com/development/2016/02/08/wrapping-c-library-as-python-module.html
|
||||||
|
- https://malramsay.com/post/perils-of-packaging/
|
||||||
- https://github.com/neuronsimulator/nrn/issues/329
|
- https://github.com/neuronsimulator/nrn/issues/329
|
||||||
|
- https://levelup.gitconnected.com/how-to-deploy-a-cython-package-to-pypi-8217a6581f09
|
||||||
|
- https://medium.com/swlh/distributing-python-packages-protected-with-cython-40fc29d84caf
|
||||||
|
@ -7,7 +7,7 @@ extensions = Extension(
|
|||||||
sources=["cython/py_tdm_termite.pyx"],
|
sources=["cython/py_tdm_termite.pyx"],
|
||||||
# libraries=[""],
|
# libraries=[""],
|
||||||
# library_dirs=["lib"],
|
# library_dirs=["lib"],
|
||||||
include_dirs=["lib","pugixml"],
|
include_dirs=["lib","3rdparty/pugixml"],
|
||||||
language='c++',
|
language='c++',
|
||||||
extra_compile_args=['-std=c++17','-Wno-unused-variable'],
|
extra_compile_args=['-std=c++17','-Wno-unused-variable'],
|
||||||
extra_link_args=['-std=c++17'],
|
extra_link_args=['-std=c++17'],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user