-
Notifications
You must be signed in to change notification settings - Fork 0
Migrate build system to python-build
#3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
98532af
Migrate to `python-build`
kostrykin 90d8dcb
Clean-up setup.py.in
kostrykin 7f35684
Fix linux_build.bash
kostrykin 57f37da
Update CMakeLists.txt
kostrykin 7c755a2
Fix linux_build.bash
kostrykin f9498f9
Fix linux_build.bash
kostrykin 754f5ff
Update build
kostrykin b428a88
Update tests
kostrykin 28406f0
Fix linux_build.bash
kostrykin a15b7a2
Update CMake files
kostrykin 72d1e9a
Update CI and RTD integration
kostrykin 8f5ab4c
Update build.yml
kostrykin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,6 +5,7 @@ | |
| /dist | ||
| /LibCarna_Python.egg-info | ||
| /.libcarna-dev | ||
| /test/results/actual | ||
| .ipynb_checkpoints | ||
| *.swp | ||
| *.pyc | ||
|
|
||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| from setuptools import setup | ||
|
|
||
|
|
||
| if __name__ == '__main__': | ||
| with open('README.md', encoding='utf-8') as io: | ||
| long_description = io.read() | ||
|
|
||
| setup( | ||
| name = 'LibCarna-Python', | ||
| version = '@FULL_VERSION@', | ||
| description = 'General-purpose real-time 3D visualization', | ||
| long_description = long_description, | ||
| long_description_content_type = 'text/markdown', | ||
| author = 'Leonid Kostrykin', | ||
| author_email = 'leonid.kostrykin@bioquant.uni-heidelberg.de', | ||
| url = 'https://github.com/kostrykin/LibCarna-Python', | ||
| include_package_data = True, | ||
| license = 'MIT', | ||
| license_files = [ | ||
| 'LICENSE', | ||
| 'LICENSE-Carna', | ||
| 'LICENSE-LibCarna', | ||
| 'LICENSE-Eigen', | ||
| 'LICENSE-GLEW', | ||
| ], | ||
| package_dir = { | ||
| 'libcarna': 'libcarna', | ||
| }, | ||
| packages = ['libcarna'], | ||
| package_data = { | ||
| 'libcarna': ['*.so'], | ||
| }, | ||
| classifiers = [ | ||
| 'Development Status :: 4 - Beta', | ||
| 'Environment :: GPU', | ||
| 'Operating System :: POSIX :: Linux', | ||
| 'Programming Language :: C++', | ||
| 'Programming Language :: Python', | ||
| 'Topic :: Education', | ||
| 'Topic :: Multimedia :: Graphics :: 3D Rendering', | ||
| 'Topic :: Scientific/Engineering :: Visualization', | ||
| ], | ||
| install_requires = [ | ||
| 'numpy', | ||
| 'numpngw >=0.1.4, <0.2', | ||
| 'scikit-video >=1.1.11, <1.2', | ||
| 'scipy', | ||
| 'scikit-image', | ||
| 'tifffile', | ||
| 'pooch', | ||
| 'matplotlib', | ||
| 'typing_extensions', # required for Python 3.10 | ||
| ], | ||
| ) | ||
|
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.