-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Movement of holidays accompanying Tokyo Olympic 2021
- Loading branch information
1 parent
ba6c95e
commit 7198a3e
Showing
2 changed files
with
38 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
from setuptools import setup, find_packages | ||
|
||
setup(name='holiday_jp', | ||
version='19.10.14', | ||
url='https://github.com/LUXEYS/holiday_jp-python', | ||
license='MIT', | ||
author='Luxeys', | ||
author_email='[email protected]', | ||
description='Japanese holiday for Python', | ||
long_description_content_type="text/markdown", | ||
packages=find_packages(), | ||
long_description=open('README.md').read(), | ||
zip_safe=False, | ||
install_requires=[ | ||
setup( | ||
name='holiday_jp', | ||
version='20.12.02', | ||
url='https://github.com/LUXEYS/holiday_jp-python', | ||
license='MIT', | ||
author='Luxeys', | ||
author_email='[email protected]', | ||
description='Japanese holiday for Python', | ||
long_description_content_type="text/markdown", | ||
packages=find_packages(), | ||
long_description=open('README.md').read(), | ||
zip_safe=False, | ||
install_requires=[ | ||
"python-dateutil==2.8.1", | ||
], | ||
classifiers=[ | ||
], | ||
classifiers=[ | ||
"Environment :: Web Environment", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
|
@@ -23,4 +24,6 @@ | |
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
]) | ||
"Programming Language :: Python :: 3.8", | ||
] | ||
) |