-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
30 lines (28 loc) · 928 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
print os.path.join(os.path.dirname(__file__), fname)
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "html2data",
version = "0.4.3",
author = "Daniel Perez Rada",
author_email = "dperezrada@gmail.com",
description = ("A simple way to transform a HTML file or URL to structured data."),
license = "BSD",
keywords = "html2data html data xpath crawler transform",
url = "/~https://github.com/dperezrada/html2data",
packages=['html2data', 'tests'],
long_description=read('README.rst'),
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
],
install_requires=[
"lxml>=2.0.0","httplib2"
],
)