-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py.in
More file actions
55 lines (51 loc) · 1.69 KB
/
setup.py.in
File metadata and controls
55 lines (51 loc) · 1.69 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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
],
)