kececinumbers 0.4.8__tar.gz → 0.4.9__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.4.9}/PKG-INFO +1 -1
- {kececinumbers-0.4.8 → kececinumbers-0.4.9}/kececinumbers/__init__.py +2 -1
- {kececinumbers-0.4.8 → kececinumbers-0.4.9}/kececinumbers/_version.py +2 -1
- {kececinumbers-0.4.8 → kececinumbers-0.4.9/kececinumbers.egg-info}/PKG-INFO +1 -1
- {kececinumbers-0.4.8 → kececinumbers-0.4.9}/pyproject.toml +1 -1
- {kececinumbers-0.4.8 → kececinumbers-0.4.9}/setup.py +13 -1
- {kececinumbers-0.4.8 → kececinumbers-0.4.9}/LICENSE +0 -0
- {kececinumbers-0.4.8 → kececinumbers-0.4.9}/MANIFEST.in +0 -0
- {kececinumbers-0.4.8 → kececinumbers-0.4.9}/README.md +0 -0
- {kececinumbers-0.4.8 → kececinumbers-0.4.9}/docs/conf.py +0 -0
- {kececinumbers-0.4.8 → kececinumbers-0.4.9}/kececinumbers/kececinumbers.py +0 -0
- {kececinumbers-0.4.8 → kececinumbers-0.4.9}/kececinumbers.egg-info/SOURCES.txt +0 -0
- {kececinumbers-0.4.8 → kececinumbers-0.4.9}/kececinumbers.egg-info/dependency_links.txt +0 -0
- {kececinumbers-0.4.8 → kececinumbers-0.4.9}/kececinumbers.egg-info/requires.txt +0 -0
- {kececinumbers-0.4.8 → kececinumbers-0.4.9}/kececinumbers.egg-info/top_level.txt +0 -0
- {kececinumbers-0.4.8 → kececinumbers-0.4.9}/setup.cfg +0 -0
- {kececinumbers-0.4.8 → kececinumbers-0.4.9}/tests/test_sample.py +0 -0
@@ -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.8"
|
25
26
|
__author__ = "Mehmet Keçeci"
|
26
27
|
__email__ = "mkececi@yaani.com"
|
27
28
|
|
@@ -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
|