1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
From d3605d93627f0d756c2c570e7ef0ad6e751d8eb3 Mon Sep 17 00:00:00 2001
From: Aisha Tammy <aisha@bsd.ac>
Date: Sun, 7 Apr 2024 20:32:01 -0400
Subject: [PATCH 1/2] feat: add pyproject.toml
---
pyproject.toml | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
create mode 100644 pyproject.toml
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..fec8478
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,27 @@
+[build-system]
+requires = ["setuptools >= 61.0"]
+build-backend = "setuptools.build_meta"
+
+[project]
+name = "azote"
+version = "1.12.6"
+description = "Wallpaper manager for sway and some other WMs"
+readme = "README.md"
+license = {text = "GPL3"}
+requires-python = ">= 3.8.0"
+authors = [
+ {name = "Piotr Miller", email = "nwg.piotr@gmail.com"},
+]
+dependencies = [
+ "pillow",
+ "PyGObject",
+ "PyYAML",
+ "Send2Trash",
+]
+
+[project.urls]
+Repository = "https://github.com/nwg-piotr/azote"
+License = "https://github.com/nwg-piotr/azote/blob/master/LICENSE"
+
+[project.scripts]
+azote = "azote.main:main"
From 769d027dfa40c218075827ca50241a2395240bea Mon Sep 17 00:00:00 2001
From: Aisha Tammy <aisha@bsd.ac>
Date: Sun, 7 Apr 2024 20:33:21 -0400
Subject: [PATCH 2/2] scratch
---
dist/azote | 5 -----
setup.py | 24 ------------------------
2 files changed, 29 deletions(-)
delete mode 100755 dist/azote
delete mode 100644 setup.py
diff --git a/setup.py b/setup.py
deleted file mode 100644
index bc0cd1e..0000000
--- a/setup.py
+++ /dev/null
@@ -1,30 +0,0 @@
-import os
-
-from setuptools import setup, find_packages
-
-
-def read(f_name):
- return open(os.path.join(os.path.dirname(__file__), f_name)).read()
-
-
-setup(
- name='azote',
- version='1.13.0',
- description='Wallpaper manager for sway and some other WMs',
- packages=find_packages(),
- include_package_data=True,
- package_data={
- "": ["images/*", "langs/*"]
- },
- url='https://github.com/nwg-piotr/azote',
- license='GPL3',
- author='Piotr Miller',
- author_email='nwg.piotr@gmail.com',
- python_requires='>=3.8.0',
- install_requires=[],
- entry_points={
- 'gui_scripts': [
- 'azote = azote.main:main'
- ]
- }
-)
|