-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
66 lines (55 loc) · 1.81 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python
# encoding: utf-8
#
# Copyright (c) 2015, Peter Hillerström <peter.hillerstrom@gmail.com>
# All rights reserved. This software is licensed under the MIT license.
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
from __future__ import with_statement
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
PACKAGE_NAME = 'beautifulsoup4-slurp'
PACKAGE_VERSION = '0.0.2'
PACKAGES = ['slurp']
with open('README.rst', 'r') as readme:
README_TEXT = readme.read()
setup(
name=PACKAGE_NAME,
version=PACKAGE_VERSION,
packages=PACKAGES,
install_requires = [
'argh >= 0.26.1',
'beautifulsoup4 >= 4.3.2',
'eight >= 0.3.2',
'html5lib >= 0.99999',
'lxml >= 3.4.4',
],
scripts=['bin/slurp'],
description="Slurp packages Beautifulsoup4 into command line.",
long_description=README_TEXT,
author='Peter Hillerström',
author_email='peter.hillerstrom@gmail.com',
license='MIT License',
url='https://github.com/peterhil/slurp',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: Utilities',
]
)