portman 1.0.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.
portman-1.0.0/PKG-INFO ADDED
@@ -0,0 +1,6 @@
1
+ Metadata-Version: 2.1
2
+ Name: portman
3
+ Version: 1.0.0
4
+ Summary: A for recording the screen during tests.
5
+ Author: Ayoub Almontaser
6
+ Author-email:
@@ -0,0 +1,6 @@
1
+ Metadata-Version: 2.1
2
+ Name: portman
3
+ Version: 1.0.0
4
+ Summary: A for recording the screen during tests.
5
+ Author: Ayoub Almontaser
6
+ Author-email:
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ portman.egg-info/PKG-INFO
3
+ portman.egg-info/SOURCES.txt
4
+ portman.egg-info/dependency_links.txt
5
+ portman.egg-info/requires.txt
6
+ portman.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ socket
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
portman-1.0.0/setup.py ADDED
@@ -0,0 +1,14 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='portman',
5
+ version='1.0.0',
6
+ author='Ayoub Almontaser',
7
+ author_email='',
8
+ description="""A for recording the screen during tests.""",
9
+ packages=find_packages(),
10
+ install_requires=[
11
+ 'socket',
12
+ ],
13
+ )
14
+