2014-11-03 09:00:53 +00:00
|
|
|
from setuptools import setup, find_packages
|
2014-11-01 23:08:20 +00:00
|
|
|
|
|
|
|
|
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',
|
2015-09-06 21:15:36 +00:00
|
|
|
version='1.0.1',
|
2014-11-03 09:00:53 +00:00
|
|
|
packages=find_packages(),
|
2014-11-03 10:04:22 +00:00
|
|
|
include_package_data=True,
|
2015-09-06 19:34:05 +00:00
|
|
|
description='Simple markdown editor (without any shitty UI controls) with image uploads (stored in MEDIA_ROOT folder) and live preview',
|
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',
|
|
|
|
|
'Programming Language :: JavaScript',
|
|
|
|
|
],
|
2014-11-02 20:10:09 +00:00
|
|
|
keywords='django markdown live preview images upload',
|
2015-09-29 19:50:26 +00:00
|
|
|
install_requires=get_requirements(),
|
2014-11-01 22:09:46 +00:00
|
|
|
)
|