-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (26 loc) · 991 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "html_jumping",
version = "0.2.4",
author = "Daniel Perez Rada",
author_email = "[email protected]",
description = ("Allows to get an HTML, coming from several previous URLs. Sometimes this is needed to get webpages that requires cookies or a HTTP referrer to get a certain page."),
license='GNU Public License v3.0',
keywords = "html_jumping cookies html get post form referrer",
url = "https://github.com/dperezrada/html-jumping",
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
long_description=read('README.rst'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
],
install_requires=[
"httplib2"
],
)