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 +6 -0
- portman-1.0.0/portman.egg-info/PKG-INFO +6 -0
- portman-1.0.0/portman.egg-info/SOURCES.txt +6 -0
- portman-1.0.0/portman.egg-info/dependency_links.txt +1 -0
- portman-1.0.0/portman.egg-info/requires.txt +1 -0
- portman-1.0.0/portman.egg-info/top_level.txt +1 -0
- portman-1.0.0/setup.cfg +4 -0
- portman-1.0.0/setup.py +14 -0
portman-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
socket
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
portman-1.0.0/setup.cfg
ADDED
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
|
+
|