-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
27 lines (26 loc) · 890 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
from distutils.core import setup
try:
import pypandoc
LONG_DESCRIPTION = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
with open('README.md') as infile:
LONG_DESCRIPTION = infile.read()
setup(
name='soupy',
py_modules=['soupy'],
version='0.4.dev',
long_description=LONG_DESCRIPTION,
description='Easier wrangling of web documents',
author='[email protected]',
author_email='[email protected]',
url='http://github.com/ChrisBeaumont/soupy',
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'License :: OSI Approved :: MIT License',
],
)