ToGos 1.1.8__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.
togos-1.1.8/PKG-INFO ADDED
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: ToGos
3
+ Version: 1.1.8
4
+ Summary: ToGos paketi
5
+ Author: Kerem
6
+ Description-Content-Type: text/plain
7
+ Dynamic: author
8
+ Dynamic: description
9
+ Dynamic: description-content-type
10
+ Dynamic: summary
11
+
12
+ Detayli aciklama
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: ToGos
3
+ Version: 1.1.8
4
+ Summary: ToGos paketi
5
+ Author: Kerem
6
+ Description-Content-Type: text/plain
7
+ Dynamic: author
8
+ Dynamic: description
9
+ Dynamic: description-content-type
10
+ Dynamic: summary
11
+
12
+ Detayli aciklama
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ ToGos.egg-info/PKG-INFO
3
+ ToGos.egg-info/SOURCES.txt
4
+ ToGos.egg-info/dependency_links.txt
5
+ ToGos.egg-info/entry_points.txt
6
+ ToGos.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ togos-calistir = main:main
@@ -0,0 +1 @@
1
+ main
togos-1.1.8/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
togos-1.1.8/setup.py ADDED
@@ -0,0 +1,24 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="ToGos",
5
+ version="1.1.8",
6
+ author="Kerem",
7
+ description="ToGos paketi",
8
+ long_description="Detayli aciklama",
9
+ long_description_content_type="text/plain",
10
+
11
+ # Kodun klasörsüz direkt ana dizindeyse bunu kullan:
12
+ py_modules=['main'],
13
+
14
+ # Eğer kodun bir klasörün içindeyse bunu aktif et:
15
+ # packages=find_packages(),
16
+
17
+ install_requires=[],
18
+
19
+ entry_points={
20
+ 'console_scripts': [
21
+ 'togos-calistir=main:main',
22
+ ],
23
+ },
24
+ )