Skip to content

Commit b18ff20

Browse files
author
Álvaro Bartolomé
committed
update setup.py
1 parent 762c9a9 commit b18ff20

File tree

4 files changed

+16
-18
lines changed

4 files changed

+16
-18
lines changed

Diff for: .idea/workspace.xml

+9-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
include README.rst
1+
include README.md
22
include investing_scrapper/resources/*

Diff for: setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[metadata]
2-
description-file = README.rst
2+
description-file = README.md

Diff for: setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@
44

55

66
def readme():
7-
with open('README.rst') as f:
7+
with open('README.md') as f:
88
return f.read()
99

1010

1111
setup(
1212
name='investing_scrapper',
13-
version='0.2.9',
13+
version='0.3',
1414
packages=find_packages(),
1515
url='',
16-
download_url='https://github.com/alvarob96/investing-scrapper/archive/0.2.9.tar.gz',
16+
download_url='https://github.com/alvarob96/investing-scrapper/archive/0.3.tar.gz',
1717
license='MIT License',
18-
author='Álvaro Bartolomé',
18+
author='Alvaro Bartolome',
1919
author_email='[email protected]',
20-
description='This is a scrapping tool that retrieves continuous Spanish stock market information from https://es.investing.com, into a Pandas DataFrame.',
20+
description='This is a scrapping tool that retrieves continuous Spanish stock market information from investing, into a Pandas DataFrame.',
2121
long_description=readme(),
2222
install_requires=['requests', 'pandas', 'beautifulsoup4', 'pytest'],
2323
data_files=[

0 commit comments

Comments
 (0)