-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (25 loc) · 881 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='holiday_jp',
version='22.10.31',
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,
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
)