-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
50 lines (48 loc) · 1.88 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="defe",
version="0.0.1",
author="Bhupesh Varshney",
author_email="varshneybhupesh@gmail.com",
description="A Tech feed Aggregator for Developers.",
license="GPLv2",
keywords="",
long_description=long_description,
long_description_content_type="text/markdown",
packages=["defe", "defe.core"],
url="https://github.com/Bhupesh-V/defe",
project_urls={
"Documentation": "https://defe.readthedocs.io/en/latest/",
"Source Code": "https://github.com/Bhupesh-V/defe",
"Funding": "https://www.patreon.com/bePatron?u=18082750",
"Say Thanks!": "https://github.com/Bhupesh-V/defe/issues/new?assignees=&labels=&template=---say-thank-you.md&title=",
"Tracker": "https://github.com/Bhupesh-V/defe/issues",
},
package_data={
# include any *.json files found in the "core" module
"defe.core": ["feeders/*.json"],
},
install_requires=["feedparser", "colorama", "tqdm", "diskcache"],
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Topic :: Education",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Terminals",
"Topic :: Internet",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Topic :: Utilities",
"Natural Language :: English",
"Operating System :: OS Independent",
],
entry_points={"console_scripts": ["defe=defe.__main__:main"]},
python_requires=">=3.6",
)