File tree 3 files changed +14
-3
lines changed
3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 1
- .PHONY : docs lint test format
1
+ .PHONY : docs lint test format test publish_test publish
2
2
3
3
init :
4
4
pip install pipenv --upgrade
15
15
16
16
test :
17
17
pipenv run pytest tests -v --cov=annofabapi --cov-report=html
18
+
19
+ publish_test :
20
+ python setup.py bdist_wheel
21
+ pipenv run twine upload dist/* --repository-url https://test.pypi.org/legacy/ --verbose
22
+ rm -fr build/ dist/ annofabapi.egg
23
+
24
+ publish :
25
+ python setup.py bdist_wheel
26
+ pipenv run twine upload dist/* --repository-url https://upload.pypi.org/legacy/ --verbose
27
+ rm -fr build/ dist/ annofabapi.egg
28
+
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ https://annofab.com/docs/api/
15
15
* 「画像を入力データとして登録する」機能など、APIを組み合わせた機能を利用できます。
16
16
17
17
# Requirements
18
- * python 3.5 +
18
+ * python 3.6 +
19
19
20
20
# Install
21
21
Original file line number Diff line number Diff line change 7
7
readme = f .read ()
8
8
9
9
setup (name = 'annofabapi' ,
10
- version = '0.0.1 ' ,
10
+ version = '0.1.0 ' ,
11
11
description = 'Python Clinet Library of AnnoFab API (https://annofab.com/docs/api/)' ,
12
12
long_description = readme ,
13
13
long_description_content_type = 'text/markdown' ,
You can’t perform that action at this time.
0 commit comments