Skip to content

Commit 7cfb11f

Browse files
committed
Added __init__.py and setup.py
1 parent 7a3b5bf commit 7cfb11f

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

FileDownloader/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from FileDownloader.FileDownloader import Downloader

setup.py

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
from setuptools import setup, find_packages
2+
import codecs
3+
import os
4+
5+
here = os.path.abspath(os.path.dirname(__file__))
6+
7+
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
8+
long_description = "\n" + fh.read()
9+
10+
VERSION = '1.0'
11+
DESCRIPTION = 'A Python module to download any file-type from the internet.'
12+
LONG_DESCRIPTION = 'A Python module to download any file-type from the internet.'
13+
14+
setup(
15+
name="FileDownloader",
16+
version=VERSION,
17+
author="NotCookey",
18+
url='https://github.com/NotCookey/FileDownloader',
19+
author_email="[email protected]",
20+
description=DESCRIPTION,
21+
long_description_content_type="text/markdown",
22+
long_description=long_description,
23+
packages=find_packages(),
24+
install_requires=['werkzeug'],
25+
keywords=['python', 'file', 'stream', 'download', 'downloader', 'file downloader', 'requests', 'save file', 'download file'],
26+
classifiers=[
27+
"Programming Language :: Python :: 3",
28+
"Operating System :: Unix",
29+
"Operating System :: MacOS :: MacOS X",
30+
"Operating System :: Microsoft :: Windows",
31+
]
32+
)

0 commit comments

Comments
 (0)