Compare commits

..

3 commits

Author SHA1 Message Date
c3f02c4ecb
chore: update license, bump version 2024-08-09 16:07:05 -05:00
0b00bcf471
Merge pull request #4 from chr1st0ph3rGG/master
Update setup.py
2024-08-09 16:04:14 -05:00
Christopher Schmitt
2b49d85ad4
Update setup.py 2024-06-04 22:29:59 +02:00
2 changed files with 6 additions and 3 deletions

View file

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2016, 2017, 2018, 2019 Gravity Boulevard, LLC
Copyright (c) 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Gravity Boulevard, LLC
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View file

@ -2,13 +2,16 @@ from setuptools import setup
setup(
name='python-holidayapi',
version='1.1.0',
version='1.2.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']
packages=['holidayapi'],
install_requires=[
'requests',
],
)