smartpush 1.0.1__tar.gz → 1.0.1.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.
@@ -1,5 +1,5 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: smartpush
3
- Version: 1.0.1
3
+ Version: 1.0.1.1
4
4
  Summary: 用于smartpush自动化测试工具包
5
5
  Author: 卢泽彬、邵宇飞、周彦龙
@@ -0,0 +1,23 @@
1
+ # SmartPush_AutoTest
2
+
3
+
4
+
5
+ ## Getting started
6
+
7
+ ## 打包/上传的依赖
8
+ ```
9
+ pip install wheel
10
+ pip install twine
11
+ ```
12
+
13
+
14
+ ## 打包-打包前记得修改版本号
15
+ ```
16
+ python setup.py sdist bdist_wheel
17
+ ```
18
+
19
+
20
+ ## 上传到pipy的命令
21
+ ```
22
+ twine upload dist/*
23
+ ```
File without changes
@@ -0,0 +1,13 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='smartpush',
5
+ version='1.0.1.1',
6
+ description='用于smartpush自动化测试工具包',
7
+ author='卢泽彬、邵宇飞、周彦龙',
8
+ packages=find_packages(),
9
+ install_requires=[
10
+ # List your package's dependencies here
11
+ # TODO
12
+ ],
13
+ )
@@ -1,5 +1,5 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: smartpush
3
- Version: 1.0.1
3
+ Version: 1.0.1.1
4
4
  Summary: 用于smartpush自动化测试工具包
5
5
  Author: 卢泽彬、邵宇飞、周彦龙
@@ -1,4 +1,7 @@
1
+ README.md
1
2
  setup.py
3
+ autotest/__init__.py
4
+ autotest/setup.py
2
5
  smartpush.egg-info/PKG-INFO
3
6
  smartpush.egg-info/SOURCES.txt
4
7
  smartpush.egg-info/dependency_links.txt
@@ -0,0 +1 @@
1
+ autotest
File without changes
File without changes