FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-mlir-graphblas/setup.py at main · python-graphblas/python-mlir-graphblas · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python-graphblas
/
python-mlir-graphblas
Public
Notifications
You must be signed in to change notification settings
Fork
3
Star
2
Code
Issues
3
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-mlir-graphblas
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
48 lines (44 loc) · 1.67 KB
Breadcrumbs
python-mlir-graphblas
/
setup.py
Copy path
File metadata and controls
48 lines (44 loc) · 1.67 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
from
setuptools
import
find_packages
,
setup
from
mlir_graphblas
import
__version__
extras_require
=
{
"test"
: [
"pytest"
],
}
extras_require
[
"complete"
]
=
sorted
({
v
for
req
in
extras_require
.
values
()
for
v
in
req
})
with
open
(
"README.md"
)
as
f
:
long_description
=
f
.
read
()
setup
(
name
=
"python-mlir-graphblas"
,
version
=
__version__
,
description
=
(
"GraphBLAS Implementation written using MLIR Python Bindings"
),
long_description
=
long_description
,
long_description_content_type
=
"text/markdown"
,
author
=
"Jim Kitchen"
,
author_email
=
"jim22k@gmail.com"
,
url
=
"https://github.com/python-graphblas/python-mlir-graphblas"
,
packages
=
find_packages
(),
python_requires
=
">=3.8"
,
install_requires
=
[
"mlir-python-bindings"
],
extras_require
=
extras_require
,
include_package_data
=
True
,
license
=
"Apache License 2.0"
,
keywords
=
[
"graphblas"
,
"graph"
,
"sparse"
,
"matrix"
,
"mlir"
,
"sparse_tensor"
],
classifiers
=
[
"Development Status :: 3 - Alpha"
,
"License :: OSI Approved :: Apache Software License"
,
"Operating System :: MacOS :: MacOS X"
,
"Operating System :: POSIX :: Linux"
,
"Operating System :: Microsoft :: Windows"
,
"Programming Language :: Python"
,
"Programming Language :: Python :: 3"
,
"Programming Language :: Python :: 3.8"
,
"Programming Language :: Python :: 3.9"
,
"Programming Language :: Python :: 3.10"
,
"Programming Language :: Python :: 3 :: Only"
,
"Intended Audience :: Developers"
,
"Intended Audience :: Science/Research"
,
"Topic :: Scientific/Engineering"
,
"Topic :: Scientific/Engineering :: Mathematics"
,
],
)
Back
|
FazBrowse Home
|
New Git URL