ED_LRR/setup.py

32 lines
782 B
Python

from setuptools import setup
from setuptools_rust import Binding, RustExtension, Strip
setup(
name="ed_lrr_gui",
version="0.1.0",
author="Daniel Seiller",
author_email="earthnuker@gmail.com",
url="none yet",
rust_extensions=[
RustExtension(
"_ed_lrr",
path="rust/Cargo.toml",
binding=Binding.PyO3,
strip=Strip.All,
native=True,
)
],
packages=["ed_lrr_gui"],
entry_points={"console_scripts": ["ed_lrr_gui=ed_lrr_gui.__main__:main"]},
install_requires=[
"PyQt5",
"appdirs",
"PyYAML",
"requests",
"python-dateutil",
"pyperclip",
],
include_package_data=True,
zip_safe=False,
)