forked from jupyter/telemetry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (43 loc) · 1.38 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
"""
Setup module for the jupyterlab-telemetry
"""
import io
import os.path as osp
from setuptools import setup, find_packages
HERE = osp.dirname(osp.realpath(__file__))
name = "jupyter_telemetry"
path = osp.realpath("{0}/{1}/_version.py".format(HERE, name))
version_ns = {}
with io.open(path, encoding="utf8") as f:
exec(f.read(), {}, version_ns)
with open(osp.join(HERE, 'README.md')) as fid:
long_description = fid.read()
setup(
name=name,
version=version_ns["__version__"],
description='Jupyter telemetry library',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
author = 'Jupyter Development Team',
author_email = '[email protected]',
url = 'http://jupyter.org',
license = 'BSD',
platforms = "Linux, Mac OS X, Windows",
keywords = ['Jupyter', 'JupyterLab'],
python_requires = '>=3.5',
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
install_requires=[
'jsonschema',
'python-json-logger',
'traitlets',
'ruamel.yaml'
],
)