apple_cursor/builder/setup.py

22 lines
625 B
Python
Raw Normal View History

2021-01-27 05:43:25 -05:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name="applbuild",
2021-01-27 06:46:52 -05:00
version="1.0.8",
2021-01-27 05:43:25 -05:00
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,
)