Skip to content

Commit 2f6b71e

Browse files
committed
Switch to setuptools+versioneer because why not.
1 parent 527ab1b commit 2f6b71e

File tree

10 files changed

+2268
-15
lines changed

10 files changed

+2268
-15
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
matlab_kernel/_version.py export-subst

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2016, Steven Silvester
1+
Copyright (c) 2016, Steven Silvester, Antony Lee
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include versioneer.py
2+
include matlab_kernel/_version.py

README.rst

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and the `Matlab engine for Python <https://www.mathworks.com/help/matlab/matlab-
77
To install::
88

99
pip install matlab_kernel
10+
# or `pip install git+https://github.com/Calysto/matlab_kernel`
11+
# for the devel version.
1012
python -m matlab_kernel install
1113

1214
To use it, run one of:

flit.ini

-13
This file was deleted.

matlab_kernel/__init__.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
"""A Matlab kernel for Jupyter"""
22

3-
__version__ = '0.11.0'
3+
from ._version import get_versions
4+
__version__ = get_versions()['version']
5+
del get_versions

0 commit comments

Comments
 (0)