forked from Rulioos/Typemallow2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (23 loc) · 866 Bytes
/
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
import os
import setuptools
with open('README.md') as file:
long_description = file.read()
setuptools.setup(
name="typemallow2",
version="0.0.3",
url="https://github.com/adenh93/typemallow",
author="Jules Aubier",
author_email="[email protected]",
description="An elegant and automatic solution for generating/outputting Typescript interfaces and enums from your Marshmallow Schemas and enums classes."
"Extension of Aden Harold works on typemallow.",
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['Marshmallow', 'Typescript', 'Python', 'Flask', 'Django'],
packages=['typemallow2'],
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
'marshmallow>=2.0.0',
'marshmallow_enum>=1.5'
])