-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 831 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (26 loc) · 831 Bytes
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 -*-
from setuptools import setup
setup(
name='boost_colab',
version='0.6.0',
description='Boost your productivity with Google Colab',
url='https://github.com/matbb/boost_colab',
author='Matjaž Berčič',
author_email='me@matbb.org',
license='MIT',
packages=['boost_colab'],
download_url = 'https://github.com/matbb/boost_colab/archive/refs/tags/v0.5.2.tar.gz',
keywords = [ "Colab", "jupyter", ],
install_requires=[
"requests>=2.23",
],
python_requires='>=3.5',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
],
)