-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
27 lines (24 loc) · 812 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
# encoding: utf-8
from __future__ import with_statement
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
setup(
name="colab-a11y-utils",
version="0.0.4",
description="Tools to improve Google Colab experience for screen reader users",
long_description=long_description,
long_description_content_type="text/markdown",
author="hassaku",
author_email="[email protected]",
url="https://github.com/hassaku/colab-a11y-utils",
py_modules=["colab_a11y_utils"],
include_package_data=True,
install_requires=["pydub", "ipython", "tqdm"],
tests_require=["nose", "mock"],
license="MIT",
keywords="accessibility google-colab screen-reader visually-impaired",
zip_safe=False,
classifiers=[]
)