-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
34 lines (32 loc) · 1.06 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
#!/usr/bin/env python
from distutils.core import setup
from setuptools import find_packages # type: ignore
import os
def _get_version():
version_file = os.path.normpath(os.path.join(os.path.dirname(__file__), 'colabxterm', 'VERSION'))
with open(version_file) as fh:
version = fh.read().strip()
return version
setup(name='colab-xterm',
version=_get_version(),
description='Open a terminal in colab, including the free tier.',
long_description_content_type="text/markdown",
long_description=open('README.md').read(),
url='https://github.com/InfuseAI/colab-xterm',
project_urls={
"Bug Tracker": "https://github.com/InfuseAI/colab-xterm/issues",
},
python_requires=">=3.6",
packages=["colabxterm"],
package_data={
'colabxterm': ['client/dist/*', 'VERSION']
},
include_package_data=False,
install_requires=['ptyprocess~=0.7.0', 'tornado>5.1'],
extras_require={
'dev': [
'jupyter',
'twine'
],
}
)