-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
31 lines (30 loc) · 1.03 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='pitchfork',
version='v0.1.5',
author='Michal Czaplinski',
author_email='[email protected]',
packages=['pitchfork', 'tests'],
scripts=[],
url='http://pypi.python.org/pypi/pitchfork/',
license='LICENSE.txt',
description='Unofficial API for pitchfork.com reviews',
long_description=open('README').read(),
install_requires=['beautifulsoup4', 'lxml'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP :: Browsers',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Utilities',
],
)