-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.py
43 lines (41 loc) · 1.43 KB
/
setup.py
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
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="mashumaro",
version="3.15",
description="Fast and well tested serialization library",
long_description=open("README.md", encoding="utf8").read(),
long_description_content_type="text/markdown",
platforms="all",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 5 - Production/Stable",
],
license="Apache License, Version 2.0",
author="Alexander Tikhonov",
author_email="[email protected]",
url="https://github.com/Fatal1ty/mashumaro",
packages=find_packages(include=("mashumaro", "mashumaro.*")),
package_data={"mashumaro": ["py.typed", "mixins/orjson.pyi"]},
python_requires=">=3.9",
install_requires=[
"typing_extensions>=4.1.0",
],
extras_require={
"orjson": ["orjson"],
"msgpack": ["msgpack>=0.5.6"],
"yaml": ["pyyaml>=3.13"],
"toml": [
"tomli-w>=1.0",
"tomli>=1.1.0;python_version<'3.11'",
],
},
zip_safe=False,
)