From 8b5f4844ccc8d0033295c7e9238777516c9ed717 Mon Sep 17 00:00:00 2001 From: Charalampos Mavroforakis Date: Fri, 18 Sep 2015 18:14:48 +0200 Subject: [PATCH] Updates the files to match the Pypi version --- CHANGELOG.rst | 4 ++-- MANIFEST.in | 13 +------------ absorbing_centrality/__init__.py | 2 +- setup.py | 12 +++++------- 4 files changed, 9 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e78ed53..70fb103 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,7 +2,7 @@ Changelog ========= -0.1 (2015-08-31) +0.1.0 (2015-08-31) ----------------------------------------- -* Skeleton of the package. +* Working version of the package. diff --git a/MANIFEST.in b/MANIFEST.in index c9bd9fc..f280cfa 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,21 +1,10 @@ -graft docs -graft examples graft absorbing_centrality -graft ci graft tests -include .bumpversion.cfg -include .coveragerc -include .cookiecutterrc -include .isort.cfg -include .pylintrc - include AUTHORS.rst -include CHANGELOG.rst -include CONTRIBUTING.rst include LICENSE include README.rst -include tox.ini .travis.yml +include tox.ini global-exclude *.py[cod] __pycache__ *.so *.dylib diff --git a/absorbing_centrality/__init__.py b/absorbing_centrality/__init__.py index 334c1bb..fbd10bf 100644 --- a/absorbing_centrality/__init__.py +++ b/absorbing_centrality/__init__.py @@ -9,4 +9,4 @@ update_fundamental_matrix) from .exceptions import CanonicalizationError -__version__ = '0.1' +__version__ = '0.1.0' diff --git a/setup.py b/setup.py index 4c5e7cb..f7325f7 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def read(*names, **kwargs): setup( name='absorbing_centrality', - version='0.1', + version='0.1.0', license='ISC', description='An implementation of the absorbing random-walk centrality measure for graphs.', long_description='%s\n%s' % (read('README.rst'), re.sub(':[a-z]+:`~?(.*?)`', r'``\1``', read('CHANGELOG.rst'))), @@ -44,25 +44,23 @@ def read(*names, **kwargs): 'Intended Audience :: Science/Research', 'Operating System :: Unix', 'Operating System :: POSIX', + 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'License :: OSI Approved :: ISC License (ISCL)', 'Topic :: Scientific/Engineering :: Information Analysis', 'Natural Language :: English' ], - keywords=[ - # eg: 'keyword1', 'keyword2', 'keyword3', + keywords=['graph mining', 'node centrality', 'random walks', 'algorithms', + 'data mining' ], install_requires=[ - # eg: 'aspectlib==1.1.1', 'six>=1.7', 'networkx>=1.9.1', 'numpy==1.9.2', 'scipy==0.16' ], extras_require={ - # eg: - # 'rst': ['docutils>=0.11'], - # ':python_version=="2.6"': ['argparse'], 'tests': tests_require, }, )