Skip to content

Commit 08f3c9d

Browse files
committed
format
1 parent 7655e43 commit 08f3c9d

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ init:
55
pipenv install --dev
66

77
format:
8-
pipenv run isort --verbose --recursive annofabapi tests examples setup.py
9-
pipenv run yapf --verbose --in-place --recursive annofabapi tests examples setup.py
8+
pipenv run isort --verbose --recursive annofabapi tests
9+
pipenv run yapf --verbose --in-place --recursive annofabapi tests
1010

1111
lint:
1212
pipenv run flake8 annofabapi

setup.py

+13-5
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,20 @@
1515
exec(f.read(), about)
1616

1717
setup(
18-
name='annofabapi', version=about['__version__'],
19-
description='Python Clinet Library of AnnoFab API (https://annofab.com/docs/api/)', long_description=readme,
20-
long_description_content_type='text/markdown', author='yuji38kwmt', author_email='[email protected]',
21-
maintainer='yuji38kwmt', license='MIT', keywords='annofab api',
18+
name='annofabapi',
19+
version=about['__version__'],
20+
description='Python Clinet Library of AnnoFab API (https://annofab.com/docs/api/)',
21+
long_description=readme,
22+
long_description_content_type='text/markdown',
23+
author='yuji38kwmt',
24+
author_email='[email protected]',
25+
maintainer='yuji38kwmt',
26+
license='MIT',
27+
keywords='annofab api',
2228
url='https://github.com/kurusugawa-computer/annofab-api-python-client',
23-
install_requires=['requests', 'python-dateutil', 'backoff'], python_requires='>=3.6', classifiers=[
29+
install_requires=['requests', 'python-dateutil', 'backoff'],
30+
python_requires='>=3.6',
31+
classifiers=[
2432
"Development Status :: 4 - Beta",
2533
"Intended Audience :: Developers",
2634
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)