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.
- {kececilayout-0.3.2/kececilayout.egg-info → kececilayout-0.3.3}/PKG-INFO +1 -1
- {kececilayout-0.3.2 → kececilayout-0.3.3/kececilayout.egg-info}/PKG-INFO +1 -1
- {kececilayout-0.3.2 → kececilayout-0.3.3}/pyproject.toml +2 -1
- {kececilayout-0.3.2 → kececilayout-0.3.3}/setup.py +13 -11
- {kececilayout-0.3.2 → kececilayout-0.3.3}/LICENSE +0 -0
- {kececilayout-0.3.2 → kececilayout-0.3.3}/MANIFEST.in +0 -0
- {kececilayout-0.3.2 → kececilayout-0.3.3}/README.md +0 -0
- {kececilayout-0.3.2 → kececilayout-0.3.3}/kececilayout/__init__.py +0 -0
- {kececilayout-0.3.2 → kececilayout-0.3.3}/kececilayout/_version.py +0 -0
- {kececilayout-0.3.2 → kececilayout-0.3.3}/kececilayout/kececi_layout.py +0 -0
- {kececilayout-0.3.2 → kececilayout-0.3.3}/kececilayout.egg-info/SOURCES.txt +0 -0
- {kececilayout-0.3.2 → kececilayout-0.3.3}/kececilayout.egg-info/dependency_links.txt +0 -0
- {kececilayout-0.3.2 → kececilayout-0.3.3}/kececilayout.egg-info/requires.txt +0 -0
- {kececilayout-0.3.2 → kececilayout-0.3.3}/kececilayout.egg-info/top_level.txt +0 -0
- {kececilayout-0.3.2 → kececilayout-0.3.3}/setup.cfg +0 -0
- {kececilayout-0.3.2 → kececilayout-0.3.3}/tests/test_sample.py +0 -0
|
@@ -1,13 +1,20 @@
|
|
|
1
|
+
import io
|
|
1
2
|
import re
|
|
2
3
|
from setuptools import setup, find_packages
|
|
3
4
|
import sys
|
|
4
|
-
|
|
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
|
-
|
|
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=
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|