forked from Py-Contributors/discord-feed-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (41 loc) · 1.1 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import setuptools
from discord.about import (
__title__,
__version__,
__description__,
__package_name__,
__author__,
__email__,
__license__,
__github__
)
with open("README.md", "r") as fh:
long_description = fh.read()
print("Installing {} v{}".format(__title__, __version__))
print(__package_name__)
setuptools.setup(
name=__package_name__,
version=__version__,
author=__author__,
author_email=__email__,
description=__description__,
long_description=long_description,
long_description_content_type="text/markdown",
url=__github__,
install_requires=[
"requests",
],
keywords="rssfeed, rssfeedcli, rssfeed-cli",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
],
python_requires=">=3.1",
# entry_points={
# "console_scripts": ["movens = movens.cli:main"],
# },
)