forked from ijasperyang/django-survey
-
-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to Python 3.11/pyproject.toml/current django versions (#180)
* upgrade python/django versions in tox.ini * Drop python 3.7 and add python 3.11
- Loading branch information
1 parent
781a924
commit 41837bc
Showing
47 changed files
with
731 additions
and
739 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
[build-system] | ||
requires = ["setuptools>=67.5.1", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "django-survey-and-report" | ||
description = "A django survey app that can export results as CSV or PDF using your native language." | ||
version = "1.4.7" | ||
readme = "README.md" | ||
authors = [ | ||
{email="[email protected]", name="Pierre SASSOULAS"} | ||
] | ||
license = {text = "AGPL-3.0"} | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Natural Language :: English", | ||
"Natural Language :: Russian", | ||
"Natural Language :: Spanish", | ||
"Natural Language :: French", | ||
"Natural Language :: Japanese", | ||
"Natural Language :: Dutch", | ||
"Natural Language :: Chinese (Traditional)", | ||
"Natural Language :: German", | ||
"Natural Language :: Indonesian", | ||
"Natural Language :: Portuguese", | ||
"Natural Language :: Polish", | ||
"Topic :: Utilities", | ||
"Environment :: Web Environment", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: GNU Affero General Public License v3", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Framework :: Django" | ||
] | ||
dynamic = ["dependencies"] | ||
|
||
[project.urls] | ||
repository = "https://github.com/Pierre-Sassoulas/django-survey" | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"pySankeyBeta~=1.3.0", | ||
"django-rosetta", | ||
"coverage", | ||
"python-coveralls", | ||
"coveralls", | ||
"colorama", | ||
"pylint", | ||
"flake8", | ||
"pre-commit" | ||
] | ||
sankey = [ | ||
"pySankeyBeta~=1.3.0", | ||
] | ||
|
||
[tool.setuptools.dynamic] | ||
dependencies = {file = "requirements.txt"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
django>=2.2,<5 | ||
django-bootstrap-form>=3.4 | ||
django-tastypie>=0.14.2 | ||
django-registration>=3.0 | ||
pytz>=2018.9 | ||
ordereddict>=1.1 | ||
pyyaml>=4.2b1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from setuptools import setup | ||
from setuptools import find_packages, setup | ||
|
||
setup() | ||
setup(include_package_data=True, packages=find_packages()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.