generated from areed1192/sigma-template
-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathsetup.py
29 lines (26 loc) · 1.03 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
"""Setup file for the fin-news package."""
from setuptools import setup
from setuptools import find_namespace_packages
with open(file="README.md", mode="r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="fin-news",
author="Alex Reed",
author_email="[email protected]",
version="0.1.2",
description="A finance news aggregator used to collect articles on different market topics.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/areed1192/finance-news-aggregator",
install_requires=["requests>=2.32.3", "fake_useragent>=2.0.3"],
packages=find_namespace_packages(include=["finnews"]),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
python_requires=">3.7",
)