-
Notifications
You must be signed in to change notification settings - Fork 188
/
setup.py
30 lines (27 loc) · 961 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
27
28
29
30
# -*- coding: utf-8 -*-
from setuptools import setup
import chinese_calendar
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="chinesecalendar",
version=chinese_calendar.__version__,
description="check if some day is holiday in China",
long_description=long_description,
long_description_content_type="text/markdown",
author="Lirian Su",
author_email="[email protected]",
url="https://github.com/LKI/chinese-calendar",
license="MIT License",
packages=["chinese_calendar"],
install_requires=[],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)