kececilayout 0.3.2__tar.gz → 0.3.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kececilayout
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary: Çeşitli graf kütüphaneleri için sıralı-zigzag yerleşimleri sağlayan bir Python paketi.
5
5
  Home-page: https://github.com/WhiteSymmetry/kececilayout
6
6
  Author: Mehmet Keçeci
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kececilayout
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary: Çeşitli graf kütüphaneleri için sıralı-zigzag yerleşimleri sağlayan bir Python paketi.
5
5
  Home-page: https://github.com/WhiteSymmetry/kececilayout
6
6
  Author: Mehmet Keçeci
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
6
6
 
7
7
  [project]
8
8
  name = "kececilayout"
9
- version = "0.3.2"
9
+ version = "0.3.3"
10
10
 
11
11
  # Diğer proje bilgileri (isteğe bağlı ama tavsiye edilir)
12
12
  authors = [
@@ -57,3 +57,4 @@ test = [
57
57
 
58
58
 
59
59
 
60
+
@@ -1,13 +1,20 @@
1
+ import io
1
2
  import re
2
3
  from setuptools import setup, find_packages
3
4
  import sys
4
- import io
5
+
6
+
7
+ # BU SATIRLAR SORUNUN KALICI ÇÖZÜMÜDÜR.
8
+ # Python'a, README.md dosyasını hangi işletim sisteminde olursa olsun
9
+ # her zaman UTF-8 kodlamasıyla okumasını söylüyoruz.
10
+ with open("README.md", "r", encoding="utf-8") as fh:
11
+ long_description = fh.read()
5
12
 
6
13
  sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
7
14
 
8
- # __version__'ı __init__.py'den oku
15
+
9
16
  def get_version():
10
- with open('kececilayout/__init__.py', 'r') as f:
17
+ with open('kececilayout/__init__.py', 'r', encoding='utf-8') as f:
11
18
  content = f.read()
12
19
  match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", content, re.M)
13
20
  if match:
@@ -19,8 +26,8 @@ setup(
19
26
  #version="0.2.9",
20
27
  version=get_version(),
21
28
  description="A deterministic node placement algorithm used in graph visualization. In this layout, nodes are arranged sequentially along a defined primary axis. Each subsequent node is then alternately offset along a secondary, perpendicular axis, typically moving to one side of the primary axis and then the other. Often, the magnitude of this secondary offset increases as nodes progress along the primary axis, creating a characteristic zig-zag or serpentine pattern.",
22
- long_description=open("README.md").read(),
23
- long_description_content_type="text/markdown",
29
+ long_description=long_description,
30
+ long_description_content_type="text/markdown", # Bu satır da önemlidir
24
31
  author="Mehmet Keçeci",
25
32
  maintainer="Mehmet Keçeci",
26
33
  author_email="bilginomi@yaani.com",
@@ -35,7 +42,7 @@ setup(
35
42
  "cairocffi"
36
43
  ],
37
44
  extras_require={
38
- "all": ["python-louvain", "igraph", "networkit", "rustworkx", "graphillion"],
45
+ "all": ["cairo", "python-louvain", "igraph", "networkit", "rustworkx", "graphillion"],
39
46
  },
40
47
  classifiers=[
41
48
  "Programming Language :: Python :: 3",
@@ -46,8 +53,3 @@ setup(
46
53
  license="MIT",
47
54
  )
48
55
 
49
-
50
-
51
-
52
-
53
-
File without changes
File without changes
File without changes
File without changes