diff --git a/builder/src/__init__.py b/builder/applbuild/__init__.py similarity index 100% rename from builder/src/__init__.py rename to builder/applbuild/__init__.py diff --git a/builder/applbuild/configure.py b/builder/applbuild/configure.py new file mode 100644 index 0000000..e91a892 --- /dev/null +++ b/builder/applbuild/configure.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + + +def gg() -> None: + print("sdsd") \ No newline at end of file diff --git a/builder/applbuild/generator.py b/builder/applbuild/generator.py new file mode 100644 index 0000000..2a8499b --- /dev/null +++ b/builder/applbuild/generator.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + + +def build() -> None: + print("hdddddd") \ No newline at end of file diff --git a/builder/build.py b/builder/build.py new file mode 100644 index 0000000..b8d965c --- /dev/null +++ b/builder/build.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from applbuild.generator import build + +build() \ No newline at end of file diff --git a/builder/setup.py b/builder/setup.py index e69de29..5d377fd 100644 --- a/builder/setup.py +++ b/builder/setup.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from setuptools import setup + +setup( + name="applbuild", + version="1.0.7", + description="Generate 'macOSBigSur' cursor theme from PNGs file", + url="https://github.com/ful1e5/apple_cursor", + packages=["applbuild"], + package_dir={"applbuild": "applbuild"}, + author="Kaiz Khatri", + author_email="kaizmandhu@gamil.com", + install_requires=["clickgen==1.1.8"], + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", + ], + python_requires=">=3.8", + zip_safe=True, +) \ No newline at end of file diff --git a/builder/src/configure.py b/builder/src/configure.py deleted file mode 100644 index e69de29..0000000 diff --git a/builder/src/generator.py b/builder/src/generator.py deleted file mode 100644 index e69de29..0000000