mirror of
https://github.com/holidayapi/holidayapi-python.git
synced 2025-06-21 12:26:32 +00:00
* Updated copyright years / company name on LICENSE. * Fixed up spacing in the README. * Bumped version number.
14 lines
353 B
Python
14 lines
353 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']
|
|
)
|
|
|