File tree 5 files changed +17
-195
lines changed
5 files changed +17
-195
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 13
13
# See the License for the specific language governing permissions and
14
14
# limitations under the License.
15
15
#
16
- __version__ = '2.4.7 '
16
+ __version__ = '2.4.9 '
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
description = A SAS kernel for Jupyter
3
- # description_file = file: README .md
4
- long_description = README.md
3
+ long_description = file: Readme .md
4
+ long_description_content_type = text/markdown
5
5
author = Jared Dean
6
6
license = Apache Software License
7
- license_file = LICENSE.txt
7
+ license_files = LICENSE.txt
8
8
author_email =jared.dean@sas.com
9
9
url = https://github.com/sassoftware/sas_kernel
10
10
@@ -17,6 +17,7 @@ classifiers =
17
17
Programming Language :: Python :: 3.6
18
18
Programming Language :: Python :: 3.7
19
19
Programming Language :: Python :: 3.8
20
+ Programming Language :: Python :: 3.9
20
21
Intended Audience :: Science/Research
21
22
Intended Audience :: Developers
22
23
Operating System :: OS Independent
@@ -35,12 +36,9 @@ setup_requires =
35
36
jupyter_client >= 6
36
37
ipython >= 7
37
38
38
- # include_package_data = True
39
-
40
39
[options.extras_require]
41
40
jlab_ext =
42
41
jupyterlab >=3
43
42
jlab_create_sas_file
43
+ sas2nb
44
44
# sas_log_viewer_v2
45
- # sas2nb
46
-
Original file line number Diff line number Diff line change 14
14
# See the License for the specific language governing permissions and
15
15
# limitations under the License.
16
16
#
17
-
17
+ try :
18
+ from setuptools import setup , find_packages
19
+ except ImportError :
20
+ from distutils .core import setup , find_packages
18
21
from distutils .command .install import install
19
- import sys
20
- import os
21
- from setuptools import setup , find_packages
22
- exec (open ('./sas_kernel/version.py' ).read ())
23
- print ("Installing sas_kernel version:{}" .format (__version__ ))
24
22
23
+ import os
24
+ import sys
25
+ from sas_kernel .version import __version__
25
26
26
- SVEM_FLAG = '--single-version-externally-managed'
27
- if SVEM_FLAG in sys .argv :
28
- sys .argv .remove (SVEM_FLAG )
27
+ svem_flag = '--single-version-externally-managed'
28
+ if svem_flag in sys .argv :
29
+ sys .argv .remove (svem_flag )
29
30
30
31
31
32
class InstallWithKernelspec (install ):
@@ -38,10 +39,9 @@ def run(self):
38
39
# If the NO_KERNEL_INSTALL env variable is set then skip the kernel installation.
39
40
return
40
41
else :
41
- import sas_kernel . install as kernel_install
42
+ from sas_kernel import install as kernel_install
42
43
kernel_install .main (argv = sys .argv )
43
44
44
-
45
45
setup (name = 'SAS_kernel' ,
46
46
version = __version__ ,
47
47
packages = find_packages (),
You can’t perform that action at this time.
0 commit comments