File: setup.py

package info (click to toggle)
jupyter-telemetry 0.1.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 188 kB
  • sloc: python: 431; sh: 5; makefile: 4
file content (48 lines) | stat: -rw-r--r-- 1,409 bytes parent folder | download | duplicates (2)
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    = 'jupyter@googlegroups.com',
    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'
    ],
)