-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 1.18 KB
/
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
31
32
33
34
35
36
37
from setuptools import find_packages, setup
def get_description():
with open("README.md") as file:
return file.read()
setup(
name="LeeCo",
version="0.0.1b",
url="https://github.com/JezaChen/LeeCo",
author="Jianzhang Chen",
author_email="jezachen@163.com",
license="MIT",
description="LeeCo: A utility for empowering the local debugging of LeetCode problems with testcases.",
long_description=get_description(),
long_description_content_type="text/markdown",
packages=find_packages(exclude=("*examples", "*examples.*")),
python_requires=">=3.7, <4",
keywords="leetcode",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.7",
"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",
"License :: OSI Approved :: MIT License",
],
package_data={
'leeco': ['*.pyi', 'py.typed'],
}
)