ddi-fw 0.0.1__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.
ddi_fw-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 1.2
2
+ Name: ddi_fw
3
+ Version: 0.0.1
4
+ Summary: Do not use :)
5
+ Home-page: UNKNOWN
6
+ Author: Kıvanç Bayraktar
7
+ Author-email: bayraktarkivanc@gmail.com
8
+ License: UNKNOWN
9
+ Description: UNKNOWN
10
+ Platform: UNKNOWN
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Requires-Python: >=3.6
ddi_fw-0.0.1/README.md ADDED
File without changes
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 1.2
2
+ Name: ddi-fw
3
+ Version: 0.0.1
4
+ Summary: Do not use :)
5
+ Home-page: UNKNOWN
6
+ Author: Kıvanç Bayraktar
7
+ Author-email: bayraktarkivanc@gmail.com
8
+ License: UNKNOWN
9
+ Description: UNKNOWN
10
+ Platform: UNKNOWN
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Requires-Python: >=3.6
@@ -0,0 +1,6 @@
1
+ README.md
2
+ setup.py
3
+ ddi_fw.egg-info/PKG-INFO
4
+ ddi_fw.egg-info/SOURCES.txt
5
+ ddi_fw.egg-info/dependency_links.txt
6
+ ddi_fw.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+
ddi_fw-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
ddi_fw-0.0.1/setup.py ADDED
@@ -0,0 +1,15 @@
1
+ from setuptools import setup, find_packages
2
+ setup(
3
+ name='ddi_fw',
4
+ version='0.0.1',
5
+ author='Kıvanç Bayraktar',
6
+ author_email='bayraktarkivanc@gmail.com',
7
+ description='Do not use :)',
8
+ packages=find_packages(),
9
+ classifiers=[
10
+ 'Programming Language :: Python :: 3',
11
+ 'License :: OSI Approved :: MIT License',
12
+ 'Operating System :: OS Independent',
13
+ ],
14
+ python_requires='>=3.6',
15
+ )