forked from abhishekkrthakur/colabcode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (21 loc) · 768 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
from setuptools import setup, Extension
from setuptools import find_packages
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
if __name__ == "__main__":
setup(
name="colabcode",
version="0.0.4",
description="ColabCode - Run codeserver on Colab!",
long_description=long_description,
long_description_content_type="text/markdown",
author="Abhishek Thakur",
author_email="abhishek4@gmail.com",
url="https://github.com/abhishekkrthakur/colabcode",
license="MIT License",
packages=find_packages(),
include_package_data=True,
install_requires=["pyngrok>=4.1.11"],
platforms=["linux", "unix"],
python_requires=">3.5.2",
)