-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 709 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name='glif_kernel',
version='0.0.1',
description='GLIF kernel',
url='https://github.com/jfschaefer/GLIFkernel',
author='Jan Frederik Schaefer',
packages=['glif_kernel'],
# license='BSD 2-clause', # TODO: License (also in classifiers)
install_requires=[ # TODO: determine minimum versions
'setuptools',
'ipykernel',
'ipython',
'ipywidgets',
'jupyter-client' # TODO: glifcore
],
classifiers=[ # https://pypi.org/pypi?%3Aaction=list_classifiers
'Development Status :: 1 - Planning',
'Programming Language :: Python :: 3',
],
include_package_data = True,
)