-
Notifications
You must be signed in to change notification settings - Fork 23
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
Salvi Solà Martinell
committed
Oct 13, 2020
1 parent
5191886
commit 11bbc0b
Showing
2 changed files
with
14 additions
and
1 deletion.
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 |
---|---|---|
@@ -1 +1 @@ | ||
0.6.1 | ||
0.6.2 |
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,13 +1,26 @@ | ||
import setuptools | ||
|
||
|
||
# read the contents of the README.md file | ||
from os import path | ||
this_directory = path.abspath(path.dirname(__file__)) | ||
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
setuptools.setup( | ||
name="dislib", | ||
version=open('VERSION').read().strip(), | ||
author="Barcelona Supercomputing Center", | ||
author_email="[email protected]", | ||
description="The distributed computing library on top of PyCOMPSs", | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
url="http://dislib.bsc.es", | ||
project_urls={ | ||
'Documentation': 'http://dislib.bsc.es', | ||
'Source': 'https://github.com/bsc-wdc/dislib', | ||
'Tracker': 'https://github.com/bsc-wdc/dislib/issues', | ||
}, | ||
packages=setuptools.find_packages(), | ||
classifiers=[ | ||
"Programming Language :: Python :: 3 :: Only", | ||
|