-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (25 loc) · 944 Bytes
/
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
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='markdown-tweetable',
version='1.4.0',
maintainer="Max Arnold",
maintainer_email="[email protected]",
url="https://github.com/max-arnold/markdown-tweetable",
packages=['tweetable'],
install_requires=['Markdown >= 2.6'],
license='LICENSE.md',
description='Tweetable quotes for Python-Markdown.',
keywords=["markup", "markdown", "plugin", "quotes", "share", "tweet", "social"],
classifiers=[
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup",
],
long_description=open('README.md').read(),
)