-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
39 lines (35 loc) · 1.28 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
from setuptools import setup, find_packages
install_requires = [
"beautifulsoup4>=4.3.2",
"requests>=2.1.0",
]
classifiers = """
Intended Audience :: Developers
Intended Audience :: Science/Research
Natural Language :: English
License :: OSI Approved :: MIT License
Programming Language :: Python
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: Site Management :: Link Checking
"""
long_description = "pyfav is a simple Python library that helps you get a \
favicon for a supplied URL. \
Favicons can be annoying to track down because they're commonly located \
in a handful of different places. pyfav removes the annoyance by handling \
the details for you -- you supply a URL and pyfav will give you the \
favicon."
setup(
name = 'pyfav',
version = '0.1',
url = 'http://github.com/phillipsm/pyfav',
author = 'Matthew Phillips',
author_email = '[email protected]',
license = 'http://opensource.org/licenses/MIT',
packages = find_packages(),
install_requires = install_requires,
description = 'You supply the URL, pyfav will supply the favicon',
long_description=open('README.rst').read(),
classifiers = filter(None, classifiers.split('\n')),
keywords = ['favicon', 'favicons'],
test_suite = 'test',
)