-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.17 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (35 loc) · 1.17 KB
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
#!/usr/bin/env python
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
long_desc = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
except IOError:
long_desc = ''
setup(name="boilerpot",
version="0.92",
description="HTML content extraction",
long_description=long_desc,
author="Jack Diederich",
author_email="jackdied@gmail.com",
url="http://github.com/jackdied/boilerpot",
packages = ['boilerpot'],
license = "Apache License",
keywords="html, scraping, templating",
zip_safe = True,
py_modules=[],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)