Skip to content

Commit

Permalink
Updates the files to match the Pypi version
Browse files Browse the repository at this point in the history
  • Loading branch information
harrymvr committed Sep 18, 2015
1 parent ece8613 commit 8b5f484
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 22 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Expand Up @@ -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.
13 changes: 1 addition & 12 deletions 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
2 changes: 1 addition & 1 deletion absorbing_centrality/__init__.py
Expand Up @@ -9,4 +9,4 @@
update_fundamental_matrix)
from .exceptions import CanonicalizationError

__version__ = '0.1'
__version__ = '0.1.0'
12 changes: 5 additions & 7 deletions setup.py
Expand Up @@ -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'))),
Expand All @@ -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,
},
)

0 comments on commit 8b5f484

Please sign in to comment.