Skip to content

Commit 2ed9ddb

Browse files
committed
Changed setup.py for packaging reasons
1 parent 5f55c0c commit 2ed9ddb

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,9 @@ Changelog
55
0.1.0 (2017-12-06)
66
------------------
77

8+
* Fixed setup.py issues.
9+
10+
0.1.0 (2017-12-06)
11+
------------------
12+
813
* Added base functionality to the code.

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,16 @@ def read(*names, **kwargs):
2424

2525
setup(
2626
name='pydiffmap',
27-
version='0.1.0',
27+
version='0.1.1',
2828
license='GPL license',
2929
description='Library for constructing variable bandwidth diffusion maps',
3030
long_description='%s\n%s' % (
3131
re.compile('^.. start-badges.*^.. end-badges', re.M | re.S).sub('', read('README.rst')),
3232
re.sub(':[a-z]+:`~?(.*?)`', r'``\1``', read('CHANGELOG.rst'))
3333
),
3434
author='Ralf Banisch, Erik Henning Thiede, Zofia Trstanova',
35-
author_email='ralf.banisch [at symbol] fu-berlin.de, ehthiede [at symbol] gmail.com, zofia.trstanova [at symbol] ed.ac.uk',
35+
# author_email='ralf.banisch [at symbol] fu-berlin.de, ehthiede [at symbol] gmail.com, zofia.trstanova [at symbol] ed.ac.uk',
36+
author_email='ralf.banisch@fu-berlin.de, ehthiede@gmail.com, zofia.trstanova@ed.ac.uk',
3637
url='https://github.com/DiffusionMapsAcademics/pyDiffMap',
3738
packages=find_packages('src'),
3839
package_dir={'': 'src'},
@@ -42,7 +43,7 @@ def read(*names, **kwargs):
4243
classifiers=[
4344
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
4445
'Development Status :: 3 - Alpha',
45-
'Topic :: Scientific/Engineering'
46+
'Topic :: Scientific/Engineering',
4647
'Intended Audience :: Science/Research',
4748
'License :: OSI Approved :: MIT License',
4849
'Operating System :: Unix',

0 commit comments

Comments
 (0)