smartpush 1.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.
- smartpush-1.0/PKG-INFO +5 -0
- smartpush-1.0/setup.cfg +4 -0
- smartpush-1.0/setup.py +13 -0
- smartpush-1.0/smartpush.egg-info/PKG-INFO +5 -0
- smartpush-1.0/smartpush.egg-info/SOURCES.txt +5 -0
- smartpush-1.0/smartpush.egg-info/dependency_links.txt +1 -0
- smartpush-1.0/smartpush.egg-info/top_level.txt +1 -0
smartpush-1.0/PKG-INFO
ADDED
smartpush-1.0/setup.cfg
ADDED
smartpush-1.0/setup.py
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
from setuptools import setup, find_packages
|
2
|
+
|
3
|
+
setup(
|
4
|
+
name='smartpush',
|
5
|
+
version='1.0',
|
6
|
+
description='用于smartpush自动化测试工具包',
|
7
|
+
author='卢泽彬、邵宇飞、周彦龙',
|
8
|
+
packages=find_packages(),
|
9
|
+
install_requires=[
|
10
|
+
# List your package's dependencies here
|
11
|
+
# TODO
|
12
|
+
],
|
13
|
+
)
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
|