-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 867 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
setup(
name='Fkdm Downloader Manager', # Replace with your app name
version='1.0', # Replace with your app version
description='Free yet simple and fast downloader manager', # Replace with a short description
author='Fidele K', # Replace with your name
author_email='your@email.com', # Replace with your email
url='https://github.com/itfidele/fkdm', # Replace with your project's URL
packages=['fkdm'], # Replace 'yourapp' with your package name(s)
install_requires=[
# List your project's dependencies here
'PyQt5',
'qtawesome',
'notify-py',
'pycurl',
],
entry_points={
'console_scripts': [
'fkdm = fkdm.main', # Replace 'yourapp' with your actual entry point
],
},
)