-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (35 loc) · 1.34 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
#!/usr/bin/env python
from os.path import join
from setuptools import setup, find_packages
MODULE_NAME = 'scrapedia'
REPO_NAME = 'scrapedia'
VERSION = open(join(MODULE_NAME, 'VERSION')).read().strip()
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name=MODULE_NAME,
description=('A scraper used for the extraction of brazilizan soccer'
' historic data from the webpage futpedia.globo.com'),
license=license,
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/LucasRGoes/{:s}'.format(REPO_NAME),
download_url='https://github.com/LucasRGoes/{:s}/archive/{:s}.tar.gz'.format(REPO_NAME, VERSION),
author='Lucas Góes',
author_email='[email protected]',
packages=find_packages(exclude=('tests', 'docs')),
version=VERSION,
install_requires=['beautifulsoup4==4.7.1', 'cachetools==3.1.1',
'pandas==0.24.2', 'requests==2.22.0',
'Unidecode==1.1.1'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only'
],
include_package_data=True
)