Lines Matching +full:python +full:- +full:version
2 # the Lawrence Livermore National Laboratory. LLNL-CODE-734707. All Rights
6 # libraries and APIs for efficient high-order finite element and spectral
10 # The CEED research is supported by the Exascale Computing Project 17-SC-20-SC,
16 # pylint: disable=no-name-in-module,import-error,unused-variable
21 # ------------------------------------------------------------------------------
23 # ------------------------------------------------------------------------------
26 def version(): function
28 ceed_version = [line.split("Version:", 1)[1].strip() for line in template if
29 line.startswith("Version: ")]
53 '-j{}'.format(nproc),
54 '--always-make',
66 arise in high-order element-based discretization of partial differential
75 co-design Center for Efficient Exascale Discretizations (CEED).
79 Development Status :: 4 - Beta
86 Programming Language :: Python
87 Programming Language :: Python :: 3.5
88 Programming Language :: Python :: 3.6
89 Programming Language :: Python :: 3.7
90 Programming Language :: Python :: 3.8
91 Programming Language :: Python :: 3 :: Only
97 version=version(),
100 long_description_content_type='text/x-rst',
101 classifiers=classifiers.split("\n")[1:-1],
114 author_email="ceed-users@llnl.gov",
118 package_dir={"libceed": "python"},
122 cffi_modules=["python/build_ceed_cffi.py:ffibuilder"],
130 # ------------------------------------------------------------------------------