This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
marshmallow_pageinfo/setup.py

22 lines
578 B
Python

from setuptools import setup
with open('README.md', 'r') as f:
readme = f.read()
if __name__ == '__main__':
setup(
name='marshmallow_pageinfo',
version='1.0.0',
author='Dmitriy Pleshevskiy',
author_email='dmitriy@ideascup.me',
description='Page info marshmallow schema for api',
long_description=readme,
long_description_content_type='text/markdown',
package_data={'': ['LICENSE', 'README.md']},
include_package_data=True,
license='MIT',
packages=['marshmallow_pageinfo']
)