-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
67 lines (62 loc) · 1.95 KB
/
setup.py
File metadata and controls
67 lines (62 loc) · 1.95 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
55
56
57
58
59
60
61
62
63
64
65
66
67
import os
import pathlib
import setuptools
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
with open(HERE / "README.md", "r", encoding="utf-8") as fh:
README = fh.read()
# Find lib name
SOURCE_PATH = pathlib.Path(__file__).resolve()
LIB_NAME = None
for entry in os.listdir(SOURCE_PATH.parent / "pyspbla"):
if "spbla" in str(entry):
LIB_NAME = entry
break
setuptools.setup(
name="pyspbla",
version="1.0.0",
author="Egor Orachyov",
author_email="egororachyov@gmail.com",
license="MIT",
description="spbla library python bindings.",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/JetBrains-Research/spbla",
project_urls={
"spbla project": "https://github.com/JetBrains-Research/spbla",
"Bug Tracker": "https://github.com/JetBrains-Research/spbla/issues"
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Environment :: GPU",
"Environment :: GPU :: NVIDIA CUDA",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Information Analysis"
],
keywords=[
"python",
"cplusplus",
"sparse-matrix",
"linear-algebra",
"graph-analysis",
"graph-algorithms",
"graphblas",
"nvidia-cuda",
"opencl"
],
packages=["pyspbla"],
package_dir={'': '.'},
package_data={'': [LIB_NAME]},
python_requires=">=3.0",
include_package_data=True
)