-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 778 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 778 Bytes
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
#!/usr/bin/env python
from setuptools import dist
dist.Distribution().fetch_build_eggs(["setuptools_rust"])
from setuptools import setup
from setuptools_rust import Binding, RustExtension
setup(
name="deadbear-fib-rs",
version="0.1",
rust_extensions=[
RustExtension(
".deadbear_fib_rs.deadbear_fib_rs", path="Cargo.toml", binding=Binding.PyO3
)
],
packages=["deadbear_fib_rs"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Rust",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
],
zip_safe=False,
)