mirror of
https://github.com/holidayapi/holidayapi-python.git
synced 2025-06-21 04:16:32 +00:00
17 lines
404 B
Python
17 lines
404 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='python-holidayapi',
|
|
version='1.1.0',
|
|
description='Official Python library for Holiday API',
|
|
url='https://holidayapi.com',
|
|
author='Josh Sherman',
|
|
author_email='hello@holidayapi.com',
|
|
keywords=['python','holidayapi','holiday','api'],
|
|
license='MIT',
|
|
packages=['holidayapi'],
|
|
install_requires=[
|
|
'requests',
|
|
],
|
|
)
|
|
|