-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
37 lines (34 loc) · 1.13 KB
/
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
28
29
30
31
32
33
34
35
36
37
# !/usr/bin/env python3
# coding:utf-8
"""
Name : setup.py
Author : Kuldeep Singh Sidhu
GitHub : https://github.com/singhsidhukuldeep
Description: Used to setup and publish
"""
from setuptools import setup, find_packages
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
]
setup(
name="google-colab-shell",
version="0.2",
description="An efficent python package to launch terminal in Google Colab",
long_description=open("README.md").read()
+ "\n\n"
+ open("CHANGELOG.md").read()
+ "\n\nRead more at https://github.com/singhsidhukuldeep/Google-Colab-Shell",
long_description_content_type="text/markdown",
url="https://github.com/singhsidhukuldeep/Google-Colab-Shell",
author="Kuldeep Singh Sidhu",
author_email="singhsidhukuldeep@gmail.com",
classifiers=classifiers,
keywords="Google Colab Shell Terminal",
packages=find_packages(),
install_requires=[],
zip_safe=False,
)