mirror of
https://github.com/szymon-jozef/zutui.git
synced 2026-09-07 12:10:43 +02:00
* Added xdg-compliant path for Linux and macOS Created config.py Moved system path logic to config.py * Added secure password storing with keyring * fixed not showing login screen if no password is saved * Update readme with new config info * add pywin32 lib
20 lines
361 B
Python
20 lines
361 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="zutui",
|
|
version="1.0.0",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"requests",
|
|
"beautifulsoup4",
|
|
"textual",
|
|
"keyring",
|
|
"pywin32"
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'zutui=zut_app.zutui:main',
|
|
],
|
|
},
|
|
)
|