🧹 Remove setup.py

This commit is contained in:
ful1e5
2021-04-23 17:21:08 +05:30
parent 7e5e029432
commit 73aa9058af
2 changed files with 3 additions and 35 deletions
+3 -10
View File
@@ -13,17 +13,10 @@ WIN_CANVAS_SIZE ?= 32
WIN_SIZE ?= 24 WIN_SIZE ?= 24
clean: clean:
@rm -rf build dist src/*.egg-info @rm -rf bxbuild/__pycache__
@find -iname "*.pyc" -delete
# Removing setup.py package files if installed setup:
@if [ -f "files.txt" ]; then @python3 -m pip install clickgen --user
@xargs rm -rf < files.txt
@rm -rf files.txt
@fi
setup: setup.py
@python3 setup.py install --user --record files.txt
build: setup build.py 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);) @$(foreach theme,$(THEMES), python3 build.py -p "$(bitmaps_dir)/BreezeX-$(theme)" --xsizes $(X_SIZES) --win-size $(WIN_SIZE) --win-canvas-size $(WIN_CANVAS_SIZE);)
-25
View File
@@ -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,
)