-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
41 lines (35 loc) · 988 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
34
35
36
37
38
39
40
41
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import re
version = re.search(
'^__version__\s*=\s*"(.*)"',
open('treon/treon.py').read(),
re.M
).group(1)
with open("README.md", "rb") as f:
long_descr = f.read().decode("utf-8")
setup(
name = "treon",
packages = ["treon"],
python_requires='>=3',
entry_points = {
"console_scripts": ['treon = treon.treon:main']
},
version = version,
description = "Testing framework for Jupyter Notebooks",
long_description = long_descr,
long_description_content_type="text/markdown",
author = "Amit Rathi",
author_email = "amit@reviewnb.com",
url = "https://github.com/reviewNB/treon",
license='MIT',
keywords=['test', 'jupyter', 'notebook', 'jupyter test', 'notebook test', 'unittest', 'doctest'],
install_requires=[
'nbconvert',
'jupyter_client',
'jupyter',
'docopt'
]
)