-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (33 loc) · 1.12 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
35
"""A Marshmallow Custom Field for Arrow objects."""
from setuptools import setup
setup(
name='Marshmallow-Arrow',
version='1.0.1',
url='https://github.com/youversion/marshmallow_arrow',
download_url='https://github.com/youversion/marshmallow_arrow/archive/master.zip',
license='MIT',
author='Alex Ronoquillo',
author_email='[email protected]',
description='A Marshmallow Custom Field for Arrow objects.',
long_description=__doc__,
packages=['marshmallow_arrow'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'arrow',
'marshmallow'
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords=['marshmallow', 'arrow'],
test_suite='tests',
)