forked from RegioHelden/django-modalview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.09 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
35
36
37
38
39
import os
from setuptools import setup, find_packages
def README():
try:
import pypandoc
return pypandoc.convert('README.md', 'rst')
except (IOError, ImportError, OSError):
return open('README.md').read()
setup(
name='django-modalview',
version='0.1.6-dev',
packages=find_packages(),
include_package_data=True,
license='Apache License 2.0',
description='Django app to add generic views.',
long_description=README(),
url='https://github.com/optiflows/django-modalview',
author='Valentin Monte',
author_email='[email protected]',
install_requires=[
'django>=1.4',
],
setup_requires=[
'setuptools_git>=1.0',
'pypandoc==0.8.3',
],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)