forked from justanr/marshmallow-annotations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 1 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
from setuptools import find_packages, setup
with open("README.rst") as fh:
long_description = fh.read()
setup(
name="marshmallow-annotations",
author="Alec Nikolas Reiter",
author_email="[email protected]",
version="2.3.0",
packages=find_packages("src", exclude=["test"]),
package_dir={"": "src"},
package_data={"": ["LICENSE", "README.rst", "CHANGELOG"]},
include_package_data=True,
description="Marrying marshmallow and annotations",
long_description=long_description,
install_requires=["marshmallow>=2.0.0,<3.0.0"],
license="MIT",
zip_safe=False,
url="https://github.com/justanr/marshmallow-annotations",
keywords=["annotations", "marshmallow"],
classifiers=[
"Topic :: Utilities",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
],
extras_require={"attrs": ["attrs"]},
)