forked from deployed/internal_links
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 1002 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 1002 Bytes
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
# coding=utf-8
from distutils.core import setup
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = ''
setup(
name = 'permalink_adder',
version = '0.1.4.2',
description = 'SEO tool for adding permalinks to text contained in Django apps databases.',
author = u'Piotr Lizończyk',
author_email = 'piotr.lizonczyk@gmail.com',
url = 'https://github.com/plizonczyk/permalink_adder',
download_url = 'https://github.com/plizonczyk/p`ermalink_adder/tarball/0.1',
keywords = ['SEO', 'permalinks'],
classifiers = ['Development Status :: 2 - Pre-Alpha',
'Framework :: Django',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7'],
requires = ['django'],
packages = ['permalink_adder',
'permalink_adder.management',
'permalink_adder.management.commands'],
long_description=long_description,
)