pyproject.toml 926 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. [build-system]
  2. requires = ["flit_core >=3.2,<4"]
  3. build-backend = "flit_core.buildapi"
  4. [project]
  5. name = "octopoint"
  6. authors = [
  7. {name = "Arkadiusz Michał Ryś", email = "Arkadiusz.Michal.Rys@gmail.com"},
  8. ]
  9. readme = "README.rst"
  10. requires-python = ">=3.9"
  11. classifiers = [
  12. "License :: OSI Approved :: MIT License",
  13. "Programming Language :: Python :: 3",
  14. "Development Status :: 2 - Pre-Alpha",
  15. "Intended Audience :: Developers",
  16. "Natural Language :: English",
  17. ]
  18. dynamic = ["version", "description"]
  19. license = {file = "LICENSE"}
  20. keywords = ["octopoint"]
  21. dependencies = [
  22. ]
  23. [project.optional-dependencies]
  24. test = [
  25. "pytest~=7.2.0",
  26. ]
  27. doc = [
  28. "sphinx~=6.1.3",
  29. ]
  30. dev = [
  31. "tox~=4.2.8",
  32. "pip~=22.3.1",
  33. "flit~=3.8.0",
  34. "twine~=4.0.2",
  35. "invoke~=1.7.3",
  36. "jinja2~=3.1.2",
  37. "flake8~=6.0.0",
  38. "coverage~=7.0.5",
  39. ]
  40. [project.urls]
  41. source = "https://git.rys.one/dtdesign/octopoint"