-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (24 loc) · 1004 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
25
26
27
28
29
"""Setup file for the Auto-Announcements package."""
from setuptools import setup
def readme():
"""Return the contents of the README.md file as a string."""
with open("README.md", encoding="UTF-8") as f:
return f.read()
setup(
name="auto-announcements",
version="0.2.0",
description="A bot framework that automatically sends announcements (or any other file) \
to a specified email address on Saturday night or when the script is run.",
long_description=readme(),
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Communications :: Email",
],
keywords="auto announcement email bot cli",
url="https://github.com/Dog-Face-Development/Auto-Anouncements",
author="willtheorangeguy",
entry_points={"console_scripts": ["auto-announcements=send:main"]},
)