mertigous 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.
- mertigous-0.1/PKG-INFO +7 -0
- mertigous-0.1/mertigous.egg-info/PKG-INFO +7 -0
- mertigous-0.1/mertigous.egg-info/SOURCES.txt +5 -0
- mertigous-0.1/mertigous.egg-info/dependency_links.txt +1 -0
- mertigous-0.1/mertigous.egg-info/top_level.txt +1 -0
- mertigous-0.1/setup.cfg +4 -0
- mertigous-0.1/setup.py +12 -0
mertigous-0.1/PKG-INFO
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
mertigous-0.1/setup.cfg
ADDED
mertigous-0.1/setup.py
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name='mertigous', # Your package name
|
|
5
|
+
version='0.1', # Version number
|
|
6
|
+
packages=find_packages(), # Automatically find packages
|
|
7
|
+
install_requires=[], # List dependencies if any
|
|
8
|
+
author='Mert Erdem', # Your name
|
|
9
|
+
author_email='turgaymerterdem@gmail.com',# Your email
|
|
10
|
+
description='Hello World',
|
|
11
|
+
url='https://github.com/turgaymerterdem/my_package', # Your project URL
|
|
12
|
+
)
|