-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 818 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 818 Bytes
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
"""File for packaging ArtScraper."""
# based on https://github.com/pypa/sampleproject - MIT License
from setuptools import find_packages
from setuptools import setup
setup(
name='artscraper',
version='0.3.1',
author='ODISSEI Social Data Science Team',
description='Package for scraping artworks from WikiArt and GoogleArt',
long_description='See https://github.com/sodascience/artscraper for examples and usage',
keywords='artscraper wikiart artsandculture',
license='MIT',
url='https://github.com/sodascience/artscraper',
packages=find_packages(exclude=['data', 'docs', 'tests', 'examples']),
python_requires='~=3.6',
install_requires=[
"requests",
"selenium",
"beautifulsoup4",
"wikipedia-api",
"webdriver-manager",
]
)