diff options
author | Steven Silvester | 2014-08-14 21:02:30 -0500 |
---|---|---|
committer | Steven Silvester | 2014-08-14 21:02:30 -0500 |
commit | 9684da257255344fbdd328ab3237008312400db7 (patch) | |
tree | 527b8bf3324d24524662f6a3b47feba97f288622 | |
parent | a8075ed97e0ac3538c61c734d1cbd2ab9a3f3a1c (diff) | |
download | scilab_kernel-9684da257255344fbdd328ab3237008312400db7.tar.gz scilab_kernel-9684da257255344fbdd328ab3237008312400db7.tar.bz2 scilab_kernel-9684da257255344fbdd328ab3237008312400db7.zip |
Use setuptools in setup.py
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | setup.py | 8 |
2 files changed, 5 insertions, 4 deletions
@@ -3,3 +3,4 @@ __pycache__ build/ dist/ MANIFEST +*.egg-info/ @@ -1,5 +1,5 @@ -from distutils.core import setup -from distutils.command.install import install +from setuptools import setup +from setuptools.command.install import install import json import os import sys @@ -56,7 +56,7 @@ setup(name='scilab_kernel', url='https://github.com/blink1073/scilab_kernel', py_modules=['scilab_kernel'], cmdclass={'install': install_with_kernelspec}, - requires=['scilab2py', 'IPython (>= 3.0)'], + install_requires=['scilab2py', 'IPython >= 3.0'], classifiers=[ 'Framework :: IPython', 'License :: OSI Approved :: BSD License', @@ -64,4 +64,4 @@ setup(name='scilab_kernel', 'Programming Language :: Python :: 3', 'Topic :: System :: Shells', ] -) + ) |