File tree Expand file tree Collapse file tree 3 files changed +12
-21
lines changed
Expand file tree Collapse file tree 3 files changed +12
-21
lines changed Original file line number Diff line number Diff line change 77- 3.8
88install :
99- 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]
1113script :
1214- python setup.py test
1315deploy :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2424with open ('umapi_client/version.py' ) as f :
2525 exec (f .read (), version_namespace )
2626
27+ test_deps = ['mock' , 'pytest>=3.0.5' , 'PyYAML' ]
28+ setup_deps = ['pytest-runner' ]
29+
2730setup (name = 'umapi-client' ,
2831 version = version_namespace ['__version__' ],
2932 description = 'Client for the User Management API (UMAPI) from Adobe - see https://adobe.ly/2h1pHgV' ,
5457 'six' ,
5558 'enum34;python_version<"3.4"' ,
5659 ],
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 ,
6566 zip_safe = False )
You can’t perform that action at this time.
0 commit comments