-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
51 lines (47 loc) · 1.41 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
48
49
50
51
import setuptools
from discord_ext.about import (
__title__,
__version__,
__description__,
__package_name__,
__author__,
__email__,
__license__,
__github__
)
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
requirements = fh.read().splitlines()
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==2.28.1',
'discord-webhook==1.0.0',
'colorama==0.4.6'
],
keywords="rssfeed, rssfeedcli, rssfeed-cli, discord-bot",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
python_requires=">=3.6",
# entry_points={
# "console_scripts": ["movens = movens.cli:main"],
# },
)