-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (32 loc) · 1.14 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
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
setup(
name="opengrapher",
packages=["opengrapher"],
version="0.4",
description="Utility for parsing the OpenGraph tags",
long_description=long_description,
long_description_content_type="text/markdown",
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
],
keywords="opengraph",
author="Maxim Semenov",
author_email="[email protected]",
url="https://github.com/0rang3max/opengrapher",
download_url="https://github.com/0rang3max/opengrapher/archive/v0.4.tar.gz",
license="MIT",
include_package_data=True,
python_requires=">=3.4",
install_requires=["beautifulsoup4", "requests"],
entry_points="""
# -*- Entry points: -*-
""",
)