-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 701 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import setuptools
with open("readme.rst", "r") as f:
long_description = f.read()
setuptools.setup(
name="CodeKit",
version="0.3",
author="ErickRen",
author_email="erickren2022@outlook.com",
description="Codekit provides functions and decorators to assist developers in coding.",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/ErickRen2023/CodeKit",
packages=setuptools.find_packages(),
install_requires=[''],
entry_points={},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)