|
1 | 1 | #!/usr/bin/python |
2 | 2 |
|
3 | | -from setuptools import setup,find_packages |
| 3 | +from setuptools import setup, find_packages |
4 | 4 |
|
5 | 5 | with open('README.rst') as file: |
6 | 6 | long_description = file.read() |
7 | 7 |
|
8 | 8 | 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", |
13 | 13 |
|
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", |
18 | 18 |
|
19 | | - packages = find_packages(), |
20 | | - long_description = long_description, |
21 | | - classifiers = [ |
| 19 | + packages=find_packages(), |
| 20 | + long_description=long_description, |
| 21 | + classifiers=[ |
22 | 22 | "Development Status :: 4 - Beta", |
23 | 23 | "Environment :: Console", |
24 | 24 | "Intended Audience :: End Users/Desktop", |
|
33 | 33 | "Programming Language :: Python :: 2.7", |
34 | 34 | ], |
35 | 35 |
|
36 | | - platforms = ["Linux", "Windows", "OSX"], |
| 36 | + platforms=["Linux", "Windows", "OSX"], |
37 | 37 | install_requires=["numpy"], |
38 | 38 | ) |
0 commit comments