mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-05-18 17:25:10 -04:00
🚀 Bibata builder pkg_info module.
This commit is contained in:
parent
31469678e8
commit
aeba37dadd
5 changed files with 53 additions and 34 deletions
16
setup.py
16
setup.py
|
@ -1,18 +1,18 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from builder import __pkg_name__, __version__, __author__, __info__, __email__, __url__
|
||||
from builder.pkg_info import info
|
||||
from setuptools import setup, find_namespace_packages
|
||||
|
||||
setup(
|
||||
name=__pkg_name__,
|
||||
version=__version__,
|
||||
description=__info__,
|
||||
url=__url__,
|
||||
author=__author__,
|
||||
author_email=__email__,
|
||||
name=info["name"],
|
||||
version=info["version"],
|
||||
description=info["description"],
|
||||
url=info["url"],
|
||||
author=info["author"],
|
||||
author_email=info["email"],
|
||||
install_requires=["Pillow>=7.2.0", "clickgen>=1.1.7"],
|
||||
packages=find_namespace_packages(include=['builder']),
|
||||
packages=find_namespace_packages(include=["builder"]),
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue