-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Magic commands available everywhere in the project
- Loading branch information
1 parent
e7bbd26
commit dac8559
Showing
4 changed files
with
104 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from .apricot_magics import load_ipython_extension |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,20 @@ | ||
__import__("setuptools").setup() | ||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name='apricot_magics', | ||
version='0.1.0', | ||
packages=find_packages(), # Automatically find the `apricot_magics` package | ||
install_requires=[ | ||
'ipython', | ||
], | ||
entry_points={ | ||
'ipython.plugins': [ | ||
'apricot_magics = apricot_magics.apricot_magics' | ||
] | ||
}, | ||
include_package_data=True, | ||
package_data={ | ||
'': ['*.py'], | ||
}, | ||
zip_safe=False | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters