-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make changes for releasing package on PyPi.
- Loading branch information
Showing
4 changed files
with
18 additions
and
5 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 @@ | ||
__version__ = '0.16.0' | ||
__version__ = '0.16.1' |
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 @@ | ||
PySide2 | ||
https://github.com/PMR2/pmr2.wfctrl/archive/v0.3.0.zip |
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 |
---|---|---|
|
@@ -25,27 +25,38 @@ def find_version(*file_paths): | |
raise RuntimeError("Unable to find version string.") | ||
|
||
|
||
with open('README.rst') as f: | ||
readme = f.read() | ||
|
||
|
||
# Define the list of requirements | ||
package_dependencies = [ | ||
'PySide2', | ||
'rdflib', | ||
'virtualenv', | ||
'requests', | ||
'PyInstaller', | ||
'python-dateutil', | ||
'dulwich', | ||
'pmr2.wfctrl @ https://github.com/PMR2/pmr2.wfctrl/archive/v0.3.0.zip', | ||
'pmr2.wfctrl', | ||
'pmr2.client >= 0.2', | ||
'packaging', | ||
'filelock', | ||
'psutil' | ||
] | ||
|
||
extras_require={ | ||
'dev': [ | ||
'PyInstaller', | ||
] | ||
} | ||
|
||
|
||
setup( | ||
name='mapclient', | ||
version=find_version("mapclient", "settings", "version.py"), | ||
description='A framework for managing and sharing workflows.', | ||
long_description=readme, | ||
long_description_content_type='text/x-rst', | ||
author='MAP Client Developers', | ||
author_email='[email protected]', | ||
url='https://github.com/MusculoskeletalAtlasProject/mapclient', | ||
|
@@ -59,4 +70,5 @@ def find_version(*file_paths): | |
include_package_data=True, | ||
entry_points={'console_scripts': ['mapclient=mapclient.application:main']}, | ||
install_requires=package_dependencies, | ||
extras_require=extras_require, | ||
) |