🧹 Remove setup.py
This commit is contained in:
+3
-10
@@ -13,17 +13,10 @@ WIN_CANVAS_SIZE ?= 32
|
||||
WIN_SIZE ?= 24
|
||||
|
||||
clean:
|
||||
@rm -rf build dist src/*.egg-info
|
||||
@find -iname "*.pyc" -delete
|
||||
@rm -rf bxbuild/__pycache__
|
||||
|
||||
# Removing setup.py package files if installed
|
||||
@if [ -f "files.txt" ]; then
|
||||
@xargs rm -rf < files.txt
|
||||
@rm -rf files.txt
|
||||
@fi
|
||||
|
||||
setup: setup.py
|
||||
@python3 setup.py install --user --record files.txt
|
||||
setup:
|
||||
@python3 -m pip install clickgen --user
|
||||
|
||||
build: setup build.py
|
||||
@$(foreach theme,$(THEMES), python3 build.py -p "$(bitmaps_dir)/BreezeX-$(theme)" --xsizes $(X_SIZES) --win-size $(WIN_SIZE) --win-canvas-size $(WIN_CANVAS_SIZE);)
|
||||
|
||||
@@ -1,25 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name="bxpkg",
|
||||
version="1.1.1",
|
||||
description="Generate 'BreezeX' cursor theme from PNGs file",
|
||||
package_dir={"": "src"},
|
||||
packages=find_packages(where="src"),
|
||||
author="Kaiz Khatri",
|
||||
author_email="kaizmandhu@gamil.com",
|
||||
install_requires=["clickgen==1.1.9"],
|
||||
url="https://github.com/ful1e5/BreezeX_Cursor",
|
||||
project_urls={
|
||||
"Bug Tracker": "https://github.com/ful1e5/BreezeX_Cursor/issues",
|
||||
},
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
||||
],
|
||||
python_requires=">=3.8",
|
||||
zip_safe=True,
|
||||
)
|
||||
Reference in New Issue
Block a user