-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 791 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name="folen",
version="1.0",
packages=find_packages(),
install_requires=[
'pycryptodome', # Eğer AES gibi şifreleme kullanıyorsanız
'requests', # HTTP istekleri için
'numpy', # Matematiksel hesaplamalar için (varsa)
'pillow', # Görsel işleme için (varsa .png dosyaları kullanıyorsanız)
'pyqt5', # Eğer PyQt5 kullanıyorsanız
'setuptools', # Setuptools'un var olması gerekebilir
# Eklediğiniz diğer bağımlılıklar
],
package_data={
'folen': ['*.png', '*.desktop'],
},
data_files=[
('share/applications', ['folen.desktop']),
('~/.local/share', ['folenlo.png']),
],
)