|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61.0", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "Webware-for-Python" |
| 7 | +# must match webware.Properties.version and docs.conf.release |
| 8 | +version = "3.1.0" |
| 9 | +description = "Webware for Python is a time-tested modular, object-oriented web framework." |
| 10 | +authors = [ |
| 11 | + {name = "Christoph Zwerschke et al.", email = "cito@online.de"}, |
| 12 | +] |
| 13 | +readme = "README.md" |
| 14 | +keywords = ["web", "framework", "servlets"] |
| 15 | +license = {text = "MIT"} |
| 16 | +# must match properties.requiredPyVersion |
| 17 | +requires-python = ">=3.6" |
| 18 | +classifiers = [ |
| 19 | + "Development Status :: 5 - Production/Stable", |
| 20 | + "Environment :: Web Environment", |
| 21 | + "Intended Audience :: Developers", |
| 22 | + "Topic :: Internet :: WWW/HTTP :: Dynamic Content", |
| 23 | + "Topic :: Software Development :: Libraries :: Application Frameworks", |
| 24 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 25 | + "License :: OSI Approved :: MIT License", |
| 26 | + "Programming Language :: Python", |
| 27 | + "Programming Language :: Python :: 3", |
| 28 | + "Programming Language :: Python :: 3.6", |
| 29 | + "Programming Language :: Python :: 3.7", |
| 30 | + "Programming Language :: Python :: 3.8", |
| 31 | + "Programming Language :: Python :: 3.9", |
| 32 | + "Programming Language :: Python :: 3.10", |
| 33 | + "Programming Language :: Python :: 3.11", |
| 34 | + "Programming Language :: Python :: 3.12", |
| 35 | + "Programming Language :: Python :: Implementation :: CPython", |
| 36 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 37 | + "Operating System :: OS Independent", |
| 38 | +] |
| 39 | + |
| 40 | +[project.urls] |
| 41 | +Homepage = "https://webwareforpython.github.io/w4py3/" |
| 42 | +Source = "https://github.com/WebwareForPython/w4py3" |
| 43 | +Issues = "https://github.com/WebwareForPython/w4py3/issues" |
| 44 | +Documentation = "https://webwareforpython.github.io/w4py3/" |
| 45 | + |
| 46 | +[project.optional-dependencies] |
| 47 | +dev = [ |
| 48 | + "Pygments>=2.14,<3", |
| 49 | + "WebTest>=3,<4", |
| 50 | + "waitress>=2,<3", |
| 51 | + "hupper>=1.10,<2", |
| 52 | +] |
| 53 | +docs = [ |
| 54 | + "Sphinx>=5,<7", |
| 55 | + "sphinx_rtd_theme>=1.1", |
| 56 | +] |
| 57 | +examples = [ |
| 58 | + "DBUtils>=3,<4", |
| 59 | + "dominate>=2.7,<3", |
| 60 | + "yattag>=1.15,<2", |
| 61 | + "Pygments>=2.14,<3", |
| 62 | + "Pillow>=8,<12", |
| 63 | +] |
| 64 | +tests = [ |
| 65 | + "psutil>=5.9,<7", |
| 66 | + "flake8>=5,<7", |
| 67 | + "pylint>=2.13,<3", |
| 68 | + "tox>=3.28,<5", |
| 69 | + "pywin32>=300,<400; sys_platform=='win32' and implementation_name=='cpython'", |
| 70 | + # include dev dependencies |
| 71 | + "Pygments>=2.14,<3", |
| 72 | + "WebTest>=3,<4", |
| 73 | + "waitress>=2,<3", |
| 74 | + "hupper>=1.10,<2", |
| 75 | + # include example dependencies |
| 76 | + "DBUtils>=3,<4", |
| 77 | + "dominate>=2.7,<3", |
| 78 | + "yattag>=1.15,<2", |
| 79 | + "Pillow>=8,<12", |
| 80 | +] |
| 81 | + |
| 82 | +[project.scripts] |
| 83 | +webware = "webware.Scripts.WebwareCLI:main" |
| 84 | + |
| 85 | +[project.entry-points."webware.plugins"] |
| 86 | +MiscUtils = "webware.MiscUtils" |
| 87 | +PSP = "webware.PSP" |
| 88 | +TaskKit = "webware.TaskKit" |
| 89 | +UserKit = "webware.UserKit" |
| 90 | +WebUtils = "webware.WebUtils" |
| 91 | + |
| 92 | +[tool.setuptools] |
| 93 | +include-package-data = true |
0 commit comments