forked from project-callisto/django-wizard-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·33 lines (28 loc) · 893 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from wizard_builder import __version__ as version
from setuptools import setup, find_packages
try:
import pypandoc
long_description = pypandoc.convert_file('README.md', 'rst') + \
pypandoc.convert_file('HISTORY.md', 'rst')
except BaseException:
long_description = ''
setup(
name='django-wizard-builder',
version=version,
description='Create multi-page forms from the Django admin',
long_description=long_description,
license="BSD",
author='Project Callisto',
author_email='[email protected]',
url='https://github.com/SexualHealthInnovations/django-wizard-builder',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
python_requires='>=3',
install_requires=[
'django-widget-tweaks==1.4.1',
'django-nested-admin==3.0.21',
],
)