forked from lovasoa/marshmallow_dataclass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1.14 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
from setuptools import setup, find_packages
VERSION = '6.1.0rc1'
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries'
]
setup(
name='marshmallow_dataclass',
version=VERSION,
description='Python library to convert dataclasses into marshmallow schemas.',
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
packages=find_packages(),
author='Ophir LOJKINE',
author_email='[email protected]',
url='https://github.com/lovasoa/marshmallow_dataclass',
keywords=['marshmallow', 'dataclass', 'serialization'],
classifiers=CLASSIFIERS,
install_requires=['marshmallow>=3.0.0,<4.0', 'typing-inspect'],
extras_require={
'enum': ["marshmallow-enum"],
'union': ["marshmallow-union"],
':python_version == "3.6"': ["dataclasses"],
'dev': 'sphinx',
},
package_data={"marshmallow_dataclass": ["py.typed"]},
)