-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
27 lines (25 loc) · 832 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
27
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Created on 21-06-2020 12:32:28
"""
__author__ = "Benedict Wilkins"
__email__ = "[email protected]"
__status__ = "Development"
import setuptools
setuptools.setup(name='nbextension-cellfolding',
version='0.0.3',
description='',
url='https://github.com/BenedictWilkinsAI/cellfolding',
author='Benedict Wilkins',
author_email='[email protected]',
license='GNU General Public License v3 (GPLv3)T',
packages=['cellfolding'],
install_requires=['jupyter'],
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3.7",
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
])