mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-05-14 07:04:35 -04:00
23 lines
679 B
Python
23 lines
679 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from builder import __name__, __version__, __author__, __info__, __email__, __url__
|
|
from setuptools import setup, find_namespace_packages
|
|
|
|
setup(
|
|
name=__name__,
|
|
version=__version__,
|
|
description=__info__,
|
|
url=__url__,
|
|
author=__author__,
|
|
author_email=__email__,
|
|
install_requires=["Pillow>=7.2.0", "clickgen>=1.1.7"],
|
|
packages=find_namespace_packages(include=['builder']),
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
],
|
|
python_requires=">=3.6",
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
)
|