Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,43 @@
[project]
name = "openfoodfacts"
dynamic = ["version"]
authors = [
{name = "The Open Food Facts team", email = "contact@openfoodfacts.org" }
]
description = "Official Python SDK of Open Food Facts"
readme = "README.md"
license = "Apache-2.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
requires-python = ">=3.9"
dependencies = [
"requests>=2.20.0",
"pydantic>=1.10.0,<2.0.0",
]

[tool.setuptools]
zip-safe = false
include-package-data = true

[tool.setuptools.package-data]
"*" = ["*.txt", "*.rst"]

[tool.setuptools.packages.find]
exclude = ["tests*"]

[tool.setuptools.dynamic]
version = {attr = "openfoodfacts.__version__"}

[tool.poetry]
name = "openfoodfacts"
version = "2.6.1"
Expand Down
35 changes: 0 additions & 35 deletions setup.cfg

This file was deleted.

Loading