-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (24 loc) · 709 Bytes
/
setup.py
File metadata and controls
35 lines (24 loc) · 709 Bytes
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
27
28
29
30
31
32
33
34
35
from setuptools import setup
setup(
name='mdf',
version='0.1',
description='MDN a simple pip for downloading facebook videos',
long_description="Visit https://mahim.me",
url='https://mahim.me',
author='Mazidul islam',
author_email='immazidulislam@gmail.com',
license='GNU',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python ',
],
keywords='mdf mazidul mahim',
packages=["mdf"],
install_requires=['tqdm', "argparse"],
entry_points={
'console_scripts': [
'mdf=mdf:TheMain',
],
},
)