-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 1.28 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/python
# -*- coding: iso-8859-1 -*-
from setuptools import setup,find_packages
from os.path import join
setup(
name='pymatlab',
version='0.2.4',
description = 'A pythonic interface to MATLAB',
long_description=open("README.txt").read() + "\n" +
open(join("docs", "CHANGELOG.txt")).read(),
packages = find_packages('src'),
package_dir={'':'src'},
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX',
'Programming Language :: Python',
],
test_suite='tests.test_all.test_suite',
url = 'http://pymatlab.sourceforge.net/',
author='Joakim Möller',
author_email='[email protected]',
license='GPLv3',
platforms=['Linux','Windows','Darwin'],
install_requires=['setuptools','numpy'],
download_url=['https://sourceforge.net/projects/pymatlab/files/'],
#tests_require=['setuptools'],
)