forked from lucasdavid/wikiart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 829 Bytes
/
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
"""WikiArt Retriever.
Author: Lucas David -- <ld492@drexel.edu>
License: MIT License (c) 2016
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='wikiart',
description='Data fetcher and converter for art and metadata in '
'http://wikiart.org/.',
entry_points={
'console_scripts': [
'wikiart = wikiart.console:main',
]
},
long_description=open('README.md').read(),
version='1.0.1',
packages=['wikiart'],
scripts=[],
author='Lucas David',
author_email='lucasolivdavid@gmail.com',
url='https://github.com/lucasdavid/wikiart-retriever',
download_url='https://github.com/lucasdavid/wikiart-retriever/'
'archive/master.zip',
install_requires=['requests'],
)