-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update version and license info in setup
- Loading branch information
1 parent
bbb7248
commit 4469b2f
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,14 +4,14 @@ | |
if __name__ == "__main__": | ||
setup( | ||
name='restful-wos', | ||
version='0.1', | ||
version='1.0.1', | ||
description='Python package simplifies access to the WoS RESTful API', | ||
long_description_content_type="text/markdown", | ||
long_description=open('README.md').read(), | ||
url='', | ||
author='Takuya Iwanaga', | ||
author_email='[email protected]', | ||
license='(c) 2020 Takuya Iwanaga', | ||
license='ISC', | ||
packages=['restful_wos'], | ||
install_requires=[ | ||
'pyyaml', | ||
|