Skip to content

Commit 533086e

Browse files
committed
Add setup.py
1 parent 3e15832 commit 533086e

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

setup.py

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name="wsl-tray",
8+
version="0.1",
9+
author="Guangyuan Yang",
10+
author_email="[email protected]",
11+
description="wsl-tray is a lightweight Windows tray application for easily managing WSL 2 VMs.",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/yzgyyang/wsl-tray",
15+
packages=setuptools.find_packages(),
16+
classifiers=[
17+
"Programming Language :: Python :: 3 :: Only",
18+
"License :: OSI Approved :: BSD License",
19+
"Operating System :: Microsoft :: Windows :: Windows 10",
20+
],
21+
python_requires='>=3.7',
22+
)

0 commit comments

Comments
 (0)