File size: 788 Bytes
dd98494
 
 
 
76c8998
dd98494
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from setuptools import setup, find_packages

setup(
    name="chahuadev-hub",
    version="1.0.3",
    author="Chahuadev",
    description="The official app launcher and distribution hub by Chahuadev.",
    long_description=open("README.md", encoding="utf-8").read(),
    long_description_content_type="text/markdown",
    url="https://huggingface.co/chahuadev",
    packages=find_packages(),
    install_requires=[
        "customtkinter",
        "requests",
    ],
    entry_points={
        "console_scripts": [
            "chahuadev-hub=chahuadev_hub.main:run_hub",
        ]
    },
    python_requires=">=3.9",
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
)