kececinumbers 0.4.8__tar.gz → 0.5.0__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.
- {kececinumbers-0.4.8/kececinumbers.egg-info → kececinumbers-0.5.0}/PKG-INFO +2 -2
- {kececinumbers-0.4.8 → kececinumbers-0.5.0}/kececinumbers/__init__.py +2 -1
- {kececinumbers-0.4.8 → kececinumbers-0.5.0}/kececinumbers/_version.py +2 -1
- {kececinumbers-0.4.8 → kececinumbers-0.5.0/kececinumbers.egg-info}/PKG-INFO +2 -2
- {kececinumbers-0.4.8 → kececinumbers-0.5.0}/pyproject.toml +3 -3
- {kececinumbers-0.4.8 → kececinumbers-0.5.0}/setup.py +13 -1
- {kececinumbers-0.4.8 → kececinumbers-0.5.0}/LICENSE +0 -0
- {kececinumbers-0.4.8 → kececinumbers-0.5.0}/MANIFEST.in +0 -0
- {kececinumbers-0.4.8 → kececinumbers-0.5.0}/README.md +0 -0
- {kececinumbers-0.4.8 → kececinumbers-0.5.0}/docs/conf.py +0 -0
- {kececinumbers-0.4.8 → kececinumbers-0.5.0}/kececinumbers/kececinumbers.py +0 -0
- {kececinumbers-0.4.8 → kececinumbers-0.5.0}/kececinumbers.egg-info/SOURCES.txt +0 -0
- {kececinumbers-0.4.8 → kececinumbers-0.5.0}/kececinumbers.egg-info/dependency_links.txt +0 -0
- {kececinumbers-0.4.8 → kececinumbers-0.5.0}/kececinumbers.egg-info/requires.txt +0 -0
- {kececinumbers-0.4.8 → kececinumbers-0.5.0}/kececinumbers.egg-info/top_level.txt +0 -0
- {kececinumbers-0.4.8 → kececinumbers-0.5.0}/setup.cfg +0 -0
- {kececinumbers-0.4.8 → kececinumbers-0.5.0}/tests/test_sample.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: kececinumbers
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.5.0
|
4
4
|
Summary: Keçeci Numbers: An Exploration of a Dynamic Sequence Across Diverse Number Sets
|
5
5
|
Home-page: https://github.com/WhiteSymmetry/kececinumbers
|
6
6
|
Author: Mehmet Keçeci
|
@@ -30,7 +30,7 @@ License: MIT License
|
|
30
30
|
SOFTWARE.
|
31
31
|
|
32
32
|
Project-URL: Homepage, https://github.com/WhiteSymmetry/kececinumbers
|
33
|
-
Project-URL:
|
33
|
+
Project-URL: Repository, https://github.com/WhiteSymmetry/kececinumbers
|
34
34
|
Classifier: Programming Language :: Python :: 3
|
35
35
|
Classifier: License :: OSI Approved :: MIT License
|
36
36
|
Classifier: Operating System :: OS Independent
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
1
2
|
# __init__.py
|
2
3
|
|
3
4
|
"""
|
@@ -21,7 +22,7 @@ import warnings
|
|
21
22
|
# importlib.reload(kececinumbers) # F821 undefined name 'kececinumbers'
|
22
23
|
|
23
24
|
# Paket sürüm numarası
|
24
|
-
__version__ = "0.4.
|
25
|
+
__version__ = "0.4.9"
|
25
26
|
__author__ = "Mehmet Keçeci"
|
26
27
|
__email__ = "mkececi@yaani.com"
|
27
28
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: kececinumbers
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.5.0
|
4
4
|
Summary: Keçeci Numbers: An Exploration of a Dynamic Sequence Across Diverse Number Sets
|
5
5
|
Home-page: https://github.com/WhiteSymmetry/kececinumbers
|
6
6
|
Author: Mehmet Keçeci
|
@@ -30,7 +30,7 @@ License: MIT License
|
|
30
30
|
SOFTWARE.
|
31
31
|
|
32
32
|
Project-URL: Homepage, https://github.com/WhiteSymmetry/kececinumbers
|
33
|
-
Project-URL:
|
33
|
+
Project-URL: Repository, https://github.com/WhiteSymmetry/kececinumbers
|
34
34
|
Classifier: Programming Language :: Python :: 3
|
35
35
|
Classifier: License :: OSI Approved :: MIT License
|
36
36
|
Classifier: Operating System :: OS Independent
|
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
|
|
6
6
|
|
7
7
|
[project]
|
8
8
|
name = "kececinumbers"
|
9
|
-
version = "0.
|
9
|
+
version = "0.5.0"
|
10
10
|
|
11
11
|
# Diğer proje bilgileri (isteğe bağlı ama tavsiye edilir)
|
12
12
|
authors = [
|
@@ -48,5 +48,5 @@ test = [
|
|
48
48
|
where = ["."]
|
49
49
|
|
50
50
|
[project.urls]
|
51
|
-
|
52
|
-
|
51
|
+
Homepage = "https://github.com/WhiteSymmetry/kececinumbers"
|
52
|
+
Repository = "https://github.com/WhiteSymmetry/kececinumbers"
|
@@ -14,6 +14,15 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
14
14
|
with open("kececinumbers/kececinumbers.py", "r", encoding="utf-8") as f:
|
15
15
|
long_description = f.read()
|
16
16
|
|
17
|
+
with open("kececinumbers/__init__.py", "r", encoding="utf-8") as f:
|
18
|
+
long_description = f.read()
|
19
|
+
|
20
|
+
with open("kececinumbers/_version.py", "r", encoding="utf-8") as f:
|
21
|
+
long_description = f.read()
|
22
|
+
|
23
|
+
with open("tests/test_sample.py", "r", encoding="utf-8") as f:
|
24
|
+
long_description = f.read()
|
25
|
+
|
17
26
|
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
|
18
27
|
|
19
28
|
|
@@ -36,7 +45,10 @@ setup(
|
|
36
45
|
author_email="mkececi@yaani.com",
|
37
46
|
maintainer_email="mkececi@yaani.com",
|
38
47
|
url="https://github.com/WhiteSymmetry/kececinumbers",
|
39
|
-
packages=find_packages(),
|
48
|
+
packages=find_packages(), # 'kececinumbers' klasörünü otomatik bulur
|
49
|
+
package_data={
|
50
|
+
"kececinumbers": ["__init__.py", "_version.py"] # Gerekli dosyaları dahil et
|
51
|
+
},
|
40
52
|
install_requires=[
|
41
53
|
"numpy",
|
42
54
|
"matplotlib",
|
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
|