2019-07-14 22:43:57 +00:00
|
|
|
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"]},
|
2019-08-04 22:05:44 +00:00
|
|
|
install_requires=[
|
|
|
|
"PyQt5",
|
|
|
|
"appdirs",
|
|
|
|
"PyYAML",
|
|
|
|
"requests",
|
|
|
|
"python-dateutil",
|
|
|
|
"pyperclip",
|
|
|
|
],
|
2019-07-21 23:55:38 +00:00
|
|
|
include_package_data=True,
|
2019-07-14 22:43:57 +00:00
|
|
|
zip_safe=False,
|
|
|
|
)
|