mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-14 07:04:47 -04:00
⚡ Builder package structure
This commit is contained in:
parent
13b9861f04
commit
526f3c02e2
7 changed files with 40 additions and 0 deletions
6
builder/applbuild/configure.py
Normal file
6
builder/applbuild/configure.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
|
||||
def gg() -> None:
|
||||
print("sdsd")
|
6
builder/applbuild/generator.py
Normal file
6
builder/applbuild/generator.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
|
||||
def build() -> None:
|
||||
print("hdddddd")
|
6
builder/build.py
Normal file
6
builder/build.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from applbuild.generator import build
|
||||
|
||||
build()
|
|
@ -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,
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue