-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (29 loc) · 955 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
28
29
30
31
32
33
#!/usr/bin/env python3
import os
import io
from setuptools import find_packages, setup
VERSION = "0.0.4"
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = "\n" + f.read()
setup(
name="vibecheck",
version=VERSION,
author="Jordan Matelsky",
author_email="[email protected]",
description=(
"vibecheck is a Python library for getting hyperlocal feedback from notebook users."
),
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache 2.0",
keywords=["datatops", "serverless", "jupyter", "notebook"],
url="https://github.com/KordingLab/vibecheck/tarball/" + VERSION,
packages=find_packages(exclude=["tests", "*.tests", "*.tests.*", "tests.*"]),
classifiers=[],
install_requires=[
"datatops",
"ipython",
"ipywidgets",
],
)