-
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) · 1 KB
/
setup.py
File metadata and controls
27 lines (25 loc) · 1 KB
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
from setuptools import setup, find_packages
setup(
name="llfw", # Paket adı
version="1.0", # Paket sürümü
description="Low-Level Formatter Wizard", # Paket açıklaması
author="Fatih Önder", # Paket sahibi adı
author_email="fatih@algyazilim.com", # Paket sahibi e-posta adresi
url="https://github.com/cektor/LLFW", # Paket deposu URL'si
packages=find_packages(), # Otomatik olarak tüm alt paketleri bulur
install_requires=[
'PyQt5', # PyQt5 bağımlılığı (versiyon sınırı belirtilmiş)
],
package_data={
'llfw': ['*.png', '*.desktop'], # 'llfw' paketine dahil dosyalar
},
data_files=[
('share/applications', ['llfw.desktop']), # Uygulama menüsüne .desktop dosyasını ekler
('share/icons/hicolor/48x48/apps', ['llfwlo.png']), # Simgeyi uygun yere ekler
],
entry_points={
'gui_scripts': [
'llfw=llfw:main', # `llfw` modülündeki `main` fonksiyonu çalıştırılır
]
},
)