generated from areed1192/sigma-template
-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
32 lines (30 loc) · 1.04 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
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.24.0',
'fake_useragent==0.1.11'
],
packages=find_namespace_packages(
include=['finnews', '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'
)