-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.31 KB
/
setup.py
File metadata and controls
41 lines (39 loc) · 1.31 KB
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
38
39
40
41
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="winflux",
version="1.0.0",
author="Chethan Yadav",
author_email="chethanyadav456@gmail.com",
description="A powerful Windows system optimizer and cleanup tool",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/chethanyadav456/WinFlux",
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Topic :: System :: Systems Administration",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: Microsoft :: Windows",
],
python_requires=">=3.10",
install_requires=[
"click>=8.1.0",
"rich>=13.0.0",
"psutil>=5.9.0",
"colorama>=0.4.6",
"winshell>=0.6; platform_system=='Windows'",
"pywin32>=305; platform_system=='Windows'",
],
entry_points={
"console_scripts": [
"winflux=winflux.cli:cli",
],
},
)