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.
- {smartpush-1.0.1 → smartpush-1.0.1.1}/PKG-INFO +1 -1
- smartpush-1.0.1.1/README.md +23 -0
- smartpush-1.0.1.1/autotest/__init__.py +0 -0
- smartpush-1.0.1.1/setup.py +13 -0
- {smartpush-1.0.1 → smartpush-1.0.1.1}/smartpush.egg-info/PKG-INFO +1 -1
- {smartpush-1.0.1 → smartpush-1.0.1.1}/smartpush.egg-info/SOURCES.txt +3 -0
- smartpush-1.0.1.1/smartpush.egg-info/top_level.txt +1 -0
- smartpush-1.0.1/smartpush.egg-info/top_level.txt +0 -1
- {smartpush-1.0.1 → smartpush-1.0.1.1/autotest}/setup.py +0 -0
- {smartpush-1.0.1 → smartpush-1.0.1.1}/setup.cfg +0 -0
- {smartpush-1.0.1 → smartpush-1.0.1.1}/smartpush.egg-info/dependency_links.txt +0 -0
@@ -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
|
+
)
|
@@ -0,0 +1 @@
|
|
1
|
+
autotest
|
@@ -1 +0,0 @@
|
|
1
|
-
|
File without changes
|
File without changes
|
File without changes
|