1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- [build-system]
- requires = ["flit_core >=3.2,<4"]
- build-backend = "flit_core.buildapi"
- [project]
- name = "octopoint"
- authors = [
- {name = "Arkadiusz Michał Ryś", email = "Arkadiusz.Michal.Rys@gmail.com"},
- ]
- readme = "README.rst"
- requires-python = ">=3.9"
- classifiers = [
- "License :: OSI Approved :: MIT License",
- "Programming Language :: Python :: 3",
- "Development Status :: 2 - Pre-Alpha",
- "Intended Audience :: Developers",
- "Natural Language :: English",
- ]
- dynamic = ["version", "description"]
- license = {file = "LICENSE"}
- keywords = ["octopoint"]
- dependencies = [
- ]
- [project.optional-dependencies]
- test = [
- "pytest~=7.2.0",
- ]
- doc = [
- "sphinx~=6.1.3",
- ]
- dev = [
- "tox~=4.2.8",
- "pip~=22.3.1",
- "flit~=3.8.0",
- "twine~=4.0.2",
- "invoke~=1.7.3",
- "jinja2~=3.1.2",
- "flake8~=6.0.0",
- "coverage~=7.0.5",
- ]
- [project.urls]
- source = "https://git.rys.one/dtdesign/octopoint"
|