Skip to content

Commit 9c42de0

Browse files
author
mr
committed
v1
1 parent a55a75b commit 9c42de0

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

matlab_wrapper/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121

2222
from __future__ import division, print_function, absolute_import
2323

24-
__version__ = "0.9.8"
24+
__version__ = "1"
2525

2626
from matlab_wrapper.matlab_session import MatlabSession

setup.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
#!/usr/bin/python
22

3-
from setuptools import setup,find_packages
3+
from setuptools import setup, find_packages
44

55
with open('README.rst') as file:
66
long_description = file.read()
77

88
setup(
9-
name = "matlab_wrapper",
10-
version = "0.9.8",
11-
author = "Marek Rudnicki",
12-
author_email = "marekrud@posteo.de",
9+
name="matlab_wrapper",
10+
version="1",
11+
author="Marek Rudnicki",
12+
author_email="marekrud@posteo.de",
1313

14-
description = "MATLAB wrapper for Python",
15-
license = "GPLv3",
16-
url = "https://github.com/mrkrd/matlab_wrapper",
17-
download_url = "https://github.com/mrkrd/matlab_wrapper/tarball/master",
14+
description="MATLAB wrapper for Python",
15+
license="GPLv3",
16+
url="https://github.com/mrkrd/matlab_wrapper",
17+
download_url="https://github.com/mrkrd/matlab_wrapper/tarball/master",
1818

19-
packages = find_packages(),
20-
long_description = long_description,
21-
classifiers = [
19+
packages=find_packages(),
20+
long_description=long_description,
21+
classifiers=[
2222
"Development Status :: 4 - Beta",
2323
"Environment :: Console",
2424
"Intended Audience :: End Users/Desktop",
@@ -33,6 +33,6 @@
3333
"Programming Language :: Python :: 2.7",
3434
],
3535

36-
platforms = ["Linux", "Windows", "OSX"],
36+
platforms=["Linux", "Windows", "OSX"],
3737
install_requires=["numpy"],
3838
)

0 commit comments

Comments
 (0)