-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (29 loc) · 1.12 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
#!/usr/bin/env python
from setuptools import setup
setup(name='brevity',
version='0.2.17',
description='Tweet shortening and autolinking utility',
long_description="""
A small utility to shorten https://indiewebcamp.com/note posts to an
acceptable tweet-length summary. Appends an optional permalink or
citation.
Also supports autolinking web addresses in text.
Brevity checks URLs against the full list of ICANN TLDs, to avoid
linking things that look like web addresses but aren't.
Documentation and source on GitHub: https://github.com/kylewm/brevity
""",
author='Kyle Mahan',
author_email='[email protected]',
url='http://indiewebcamp.com/brevity',
py_modules=['brevity'],
test_suite='tests',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Text Processing',
'Topic :: Utilities',
])