Daniel Seiller
c290d5eb12
Implement route plotting in GUI Use batch fuzzy search to find systems search all systems at once after adding added some error checking
31 lines
782 B
Python
31 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,
|
|
)
|