-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (22 loc) · 730 Bytes
/
setup.py
File metadata and controls
28 lines (22 loc) · 730 Bytes
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
import os
import setuptools
with open('README.md') as file:
long_description = file.read()
setuptools.setup(
name="typemallow",
version="0.0.4",
url="https://github.com/adenh93/typemallow",
author="Aden Herold",
author_email="aden.herold1@gmail.com",
description="An elegant and automatic solution for generating/outputting Typescript interfaces from your Marshmallow Schemas.",
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['Marshmallow', 'Typescript', 'Python', 'Flask', 'Django'],
packages=['typemallow'],
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
'marshmallow'
]
)