-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
65 additions
and
6 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
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 |
---|---|---|
@@ -1 +1 @@ | ||
include AUTHORS CHANGELOG.rst LICENSE.txt README.md irods/test/unicode_sampler.xml | ||
include AUTHORS CHANGELOG.rst LICENSE.txt README.rst irods/test/README.rst irods/test/unicode_sampler.xml |
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 |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '0.7.0a0' | ||
__version__ = '0.7.0' |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
[metadata] | ||
description-file = README.md | ||
description-file = README.rst |
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 |
---|---|---|
|
@@ -5,19 +5,24 @@ | |
# Get package version | ||
version = {} | ||
here = os.path.abspath(os.path.dirname(__file__)) | ||
with open(os.path.join(here, 'irods/version.py')) as f: | ||
exec(f.read(), version) | ||
with open(os.path.join(here, 'irods/version.py')) as file: | ||
exec(file.read(), version) | ||
|
||
|
||
# Get description | ||
with open('README.rst') as file: | ||
long_description = file.read() | ||
|
||
|
||
setup(name='python-irodsclient', | ||
version=version['__version__'], | ||
author='iRODS Consortium', | ||
author_email='[email protected]', | ||
description='A python API for iRODS', | ||
long_description=long_description, | ||
license='BSD', | ||
url='https://github.com/irods/python-irodsclient', | ||
keywords='irods', | ||
long_description='README.rst', | ||
classifiers=[ | ||
'License :: OSI Approved :: BSD License', | ||
'Development Status :: 4 - Beta', | ||
|