diff --git a/.gitignore b/.gitignore index 85e734b4..1b01abdd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ res/demo.mp4 packs/ +*.egg-info/ __pycache__/ diff --git a/dist/color_manager_nv-0.1.0-py3-none-any.whl b/dist/color_manager_nv-0.1.0-py3-none-any.whl new file mode 100644 index 00000000..0140dfed Binary files /dev/null and b/dist/color_manager_nv-0.1.0-py3-none-any.whl differ diff --git a/dist/color_manager_nv-0.1.0.tar.gz b/dist/color_manager_nv-0.1.0.tar.gz new file mode 100644 index 00000000..bf17c9d6 Binary files /dev/null and b/dist/color_manager_nv-0.1.0.tar.gz differ diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index 838abe62..00000000 --- a/pyproject.toml +++ /dev/null @@ -1,27 +0,0 @@ -[build-system] -requires = ["setuptools>=61.0", "wheel"] -build-backend = "setuptools.build_meta" - -[project] -name = "color-manager" -version = "0.1.0" -authors = [ - { name="Nicklas Vraa", email="nicklasvraa@proton.me" }, -] -description = "A package for recoloring icon packs and themes" -readme = "readme.md" -requires-python = ">=3.7" -classifiers = [ - "Programming Language :: Python :: 3", - "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", - "Operating System :: OS Independent", -] -dependencies = [ - "colormath", - "tqdm", - "pygobject" -] - -[project.urls] -"Homepage" = "https://github.com/nicklasvraa/color-manager" -"Bug Tracker" = "https://github.com/nicklasvraa/color-manager/issues" diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..b3a6788d --- /dev/null +++ b/setup.py @@ -0,0 +1,27 @@ +from setuptools import setup, find_packages + +setup( + setup_requires=['wheel'], + name="color_manager_nv", + version="0.1.0", + author="Nicklas Vraa", + author_email="nicklasvraa@proton.me", + description="A package for recoloring existing svg-based icon packs and themes", + url="https://github.com/nicklasvraa/color-manager", + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", + "Operating System :: OS Independent", + ], + python_requires=">=3.6", + packages=find_packages(include=["color_manager", "color_manager.*"]), + include_package_data=True, + package_data={ + "color_manager": ["palettes/*.json"], + }, + exclude=["tests", "packs"], + install_requires=[ + "colormath", + "tqdm" + ], +)