-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (33 loc) · 1.23 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
from setuptools import setup, find_packages
from codecs import open
from os import path
from metatron.version import __version__
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='metatron',
version=__version__,
description='Python 3 HTML meta tag parser, with emphasis on complex meta tag structures '
'with support for OpenGraph and Twitter Card tags, including array handling',
long_description=long_description,
long_description_content_type='text/x-rst',
author='Harel Malka',
author_email='[email protected]',
url='https://github.com/harel/metatron',
download_url='https://github.com/harel/metatron/archive/0.5.tar.gz',
keywords='html meta parser opengraph twittercard',
install_requires=[
'beautifulsoup4',
'requests',
],
license='MIT',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Topic :: Communications :: Email',
'Programming Language :: Python :: 3.5',
]
)