django-markdownx/setup.py

42 lines
1.5 KiB
Python
Raw Normal View History

2014-11-03 09:00:53 +00:00
from setuptools import setup, find_packages
import os
if 'vagrant' in str(os.environ):
del os.link
2015-09-06 21:15:36 +00:00
2015-09-29 19:50:26 +00:00
def get_requirements():
return open('requirements.txt').read().splitlines()
2014-11-01 22:09:46 +00:00
setup(
name='django-markdownx',
2016-05-14 10:18:00 +00:00
version='1.5',
2014-11-03 09:00:53 +00:00
packages=find_packages(),
2014-11-03 10:04:22 +00:00
include_package_data=True,
2016-02-13 13:14:35 +00:00
description='Django Markdownx is a Markdown editor built for Django. It enables raw editing, live preview and image uploads (stored in `MEDIA` folder) with drag&drop functionality and auto tag insertion. Also, django-markdownx supports multiple editors on one page.',
2016-02-12 12:47:16 +00:00
long_description='See full readme: https://github.com/adi-/django-markdownx',
2014-11-01 22:09:46 +00:00
url='https://github.com/adi-/django-markdownx',
2014-12-03 19:43:16 +00:00
author='adi-',
2015-09-06 19:34:05 +00:00
author_email='aaadeji@gmail.com',
2014-11-01 22:09:46 +00:00
license='BSD',
classifiers=[
2015-09-06 19:34:05 +00:00
'Development Status :: 5 - Production/Stable',
2014-11-01 22:09:46 +00:00
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development',
'Topic :: Software Development :: User Interfaces',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
2015-09-30 11:22:35 +00:00
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
2015-09-29 04:28:20 +00:00
'Programming Language :: Python :: 3.5',
2014-11-01 22:09:46 +00:00
'Programming Language :: JavaScript',
],
keywords='django markdown live preview images upload',
2015-09-30 11:22:35 +00:00
tests_require=get_requirements(),
test_suite='runtests',
2015-09-29 19:50:26 +00:00
install_requires=get_requirements(),
2014-11-01 22:09:46 +00:00
)