forked from ludbek/webpreview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.05 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
from setuptools import setup, find_packages
import sys, os
version = '1.6.0'
setup(name='webpreview',
version=version,
description="Extracts OpenGraph, TwitterCard and Schema properties from a webpage.",
long_description=open('README.md').read(),
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='OpenGraph TwitterCard Schema Facebook Twitter Google+',
author='ludbek',
author_email='[email protected]',
url='https://github.com/ludbek/webpreview',
license='LICENSE.txt',
packages=find_packages(exclude=['test']),
include_package_data=True,
zip_safe=True,
install_requires=[
"requests>=2.10.0",
"beautifulsoup4>=4.4.0",
],
entry_points="""
# -*- Entry points: -*-
""",
)