-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
99 lines (82 loc) · 3.1 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
from setuptools import find_packages, setup
VERSION = "3.0.0"
LONG_DESCRIPTION = """
======
Formly
======
.. image:: https://img.shields.io/pypi/v/formly.svg
:target: https://pypi.python.org/pypi/formly/
\
.. image:: https://img.shields.io/circleci/project/github/eldarion/formly.svg
:target: https://circleci.com/gh/eldarion/formly
.. image:: https://img.shields.io/codecov/c/github/eldarion/formly.svg
:target: https://codecov.io/gh/eldarion/formly
.. image:: https://img.shields.io/github/contributors/eldarion/formly.svg
:target: https://github.com/eldarion/formly/graphs/contributors
.. image:: https://img.shields.io/github/issues-pr/eldarion/formly.svg
:target: https://github.com/eldarion/formly/pulls
.. image:: https://img.shields.io/github/issues-pr-closed/eldarion/formly.svg
:target: https://github.com/eldarion/formly/pulls?q=is%3Apr+is%3Aclosed
\
.. image:: https://img.shields.io/badge/license-BSD-blue.svg
:target: https://opensource.org/licenses/BSD-3-Clause
\
``formly`` is a forms/survey generator for dynamically constructed multi-page surveys with the ability to be non-linear.
Development sponsored by `Midwest Communications`_ and `Massachusetts General Hospital`_.
Supported Django and Python Versions
------------------------------------
+-----------------+-----+-----+-----+-----+
| Django / Python | 2.7 | 3.4 | 3.5 | 3.6 |
+=================+=====+=====+=====+=====+
| 1.11 | * | * | * | * |
+-----------------+-----+-----+-----+-----+
| 2.0 | | * | * | * |
+-----------------+-----+-----+-----+-----+
| 3.1 | | | | * |
+-----------------+-----+-----+-----+-----+
.. _Midwest Communications: http://mwcradio.com/
.. _Massachusetts General Hospital: http://www.massgeneral.org/
"""
setup(
author="Patrick Altman",
author_email="[email protected]",
description="A forms/survey generator for dynamically constructed multi-page surveys",
name="formly",
long_description=LONG_DESCRIPTION,
version=VERSION,
url="https://github.com/eldarion/formly/",
license="BSD",
packages=find_packages(),
package_data={
"formly": []
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
"django>=1.11",
"django-appconf>=1.0.2",
"jsonfield>=2.0.2",
"six>=1.15.0"
],
tests_require=[
"django-bootstrap-form>=3.0.0",
"django-test-plus>=1.0.22",
"factory_boy>=2.10.0",
"mock>=2.0.0",
"pinax-templates>=1.0.0",
],
test_suite="runtests.runtests",
zip_safe=False
)