Skip to content

Commit

Permalink
adding extra info for PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
Salvi Solà Martinell committed Oct 13, 2020
1 parent 5191886 commit 11bbc0b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.1
0.6.2
13 changes: 13 additions & 0 deletions setup.py
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",
Expand Down

0 comments on commit 11bbc0b

Please sign in to comment.