Fork of https://github.com/oxigraph/oxigraph.git for the purpose of NextGraph project
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
362 B
15 lines
362 B
6 years ago
|
from setuptools import setup
|
||
|
|
||
|
try:
|
||
|
from setuptools_rust import Binding, RustExtension
|
||
|
except ImportError:
|
||
|
print('You should install the setuptool-rust package to be able to build rudf')
|
||
|
|
||
|
|
||
|
setup(
|
||
|
name="rudf",
|
||
|
version="0.1",
|
||
|
rust_extensions=[RustExtension("rudf.rudf", binding=Binding.RustCPython)],
|
||
|
packages=["rudf"],
|
||
|
zip_safe=False,
|
||
|
)
|