forked from HenrikOssipoff/python-opengraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 1.33 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
# -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals
from setuptools import setup, find_packages
VERSION = (0, 0, 3)
__version__ = VERSION
__versionstr__ = '.'.join([str(v) for v in VERSION])
install_requires = ['beautifulsoup4>=4.3', 'requests>=2.7']
test_require = install_requires + ['coverage>=3.7', 'nose>=1.3', 'responses']
setup(
name='python-opengraph',
version=__versionstr__,
description='Python module to parse Open Graph metadata on web pages',
url='https://github.com/HenrikOssipoff/python-opengraph',
license='MIT',
author='Henrik Ossipoff Hansen',
author_email='[email protected]',
install_requires=install_requires,
packages=find_packages(exclude=['tests']),
tests_require=test_require,
test_suite='tests.run_tests.all',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: PyPy'
],
keywords='opengraph')