File tree Expand file tree Collapse file tree 4 files changed +13
-22
lines changed Expand file tree Collapse file tree 4 files changed +13
-22
lines changed Original file line number Diff line number Diff line change 7
7
- 3.8
8
8
install :
9
9
- pip install --upgrade pip setuptools wheel
10
- - pip install -r requirements.txt
10
+ - pip install -e .
11
+ - pip install -e .[test]
12
+ - pip install -e .[setup]
11
13
script :
12
14
- python setup.py test
13
15
deploy :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 24
24
with open ('umapi_client/version.py' ) as f :
25
25
exec (f .read (), version_namespace )
26
26
27
+ test_deps = ['mock' , 'pytest>=3.0.5' , 'PyYAML' ]
28
+ setup_deps = ['pytest-runner' ]
29
+
27
30
setup (name = 'umapi-client' ,
28
31
version = version_namespace ['__version__' ],
29
32
description = 'Client for the User Management API (UMAPI) from Adobe - see https://adobe.ly/2h1pHgV' ,
54
57
'six' ,
55
58
'enum34;python_version<"3.4"' ,
56
59
],
57
- setup_requires = [
58
- 'pytest-runner' ,
59
- ],
60
- tests_require = [
61
- 'pytest>=3.0.5' ,
62
- 'mock' ,
63
- 'PyYAML' ,
64
- ],
60
+ extras_require = {
61
+ 'test' : test_deps ,
62
+ 'setup' : setup_deps ,
63
+ },
64
+ setup_requires = setup_deps ,
65
+ tests_require = test_deps ,
65
66
zip_safe = False )
Original file line number Diff line number Diff line change 18
18
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
19
# SOFTWARE.
20
20
21
- __version__ = "2.13 "
21
+ __version__ = "2.14 "
You can’t perform that action at this time.
0 commit comments