1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
from setuptools import find_packages, setup
VERSION = "8.7.1"
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
]
EXTRAS_REQUIRE = {
"lint": ["pre-commit~=2.17"],
"docs": ["sphinx"],
"tests": [
"pytest>=5.4",
# re: pypy: typed-ast (a dependency of mypy) fails to install on pypy
# https://github.com/python/typed_ast/issues/111
"pytest-mypy-plugins>=1.2.0; implementation_name != 'pypy'",
],
}
EXTRAS_REQUIRE["dev"] = (
EXTRAS_REQUIRE["lint"] + EXTRAS_REQUIRE["docs"] + EXTRAS_REQUIRE["tests"]
)
setup(
name="marshmallow_dataclass",
version=VERSION,
description="Python library to convert dataclasses into marshmallow schemas.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages(
include=["marshmallow_dataclass", "marshmallow_dataclass.*"]
),
author="Ophir LOJKINE",
author_email="pere.jobs@gmail.com",
url="https://github.com/lovasoa/marshmallow_dataclass",
keywords=["marshmallow", "dataclass", "serialization"],
classifiers=CLASSIFIERS,
license="MIT",
python_requires=">=3.8",
install_requires=[
"marshmallow>=3.18.0,",
"typing-inspect>=0.9.0",
"typeguard>=4.0,<5",
# Need `dataclass_transform(field_specifiers)`
"typing-extensions>=4.2.0; python_version<'3.11'",
],
extras_require=EXTRAS_REQUIRE,
package_data={"marshmallow_dataclass": ["py.typed"]},
)
|