forked from douglascdev/gmail_attachment_downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 1.06 KB
/
setup.py
File metadata and controls
32 lines (27 loc) · 1.06 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
27
28
29
30
31
32
from setuptools import find_packages
from setuptools import setup
# reading long description from file
with open("README.md", encoding="utf-8") as file:
long_description = file.read()
with open("requirements/requirements.txt", encoding="utf-8") as file:
REQUIREMENTS = file.read()
# calling the setup function
setup(
name="gmail_attachment_downloader",
version="0.0.2",
description="A simple command line application that downloads all the gmail attachments with the specified format and search terms",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/douglascdev/gmail_attachment_downloader",
author="Douglas",
author_email="douglasc.dev@gmail.com",
license="MIT License",
packages=find_packages(include=["gmail_attachment_downloader"]),
entry_points={
"console_scripts": [
"gmail_attachment_dl = gmail_attachment_downloader.__main__:main",
],
},
install_requires=REQUIREMENTS,
keywords=("email", "gmail", "attachment", "download"),
)