-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
26 lines (24 loc) · 865 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name = 'ferretmagic',
packages = ['ferretmagic'],
py_modules = ['ferretmagic'],
version = '20220825',
description = 'ipython extension for pyferret',
author = 'Patrick Brockmann',
author_email = '[email protected]',
long_description=long_description,
long_description_content_type="text/markdown",
url = 'https://github.com/PBrockmann/ipython_ferretmagic',
download_url = 'https://github.com/PBrockmann/ipython_ferretmagic/tarball/master',
keywords = ['jupyter', 'ipython', 'ferret', 'pyferret', 'magic', 'extension'],
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Framework :: Jupyter',
'Framework :: IPython'
],
)