-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (42 loc) · 1.45 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
49
50
51
52
53
54
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
# Standard library imports
import ast
import os
# Third party imports
from setuptools import find_packages, setup
# Constants
HERE = os.path.abspath(os.path.dirname(__file__))
def get_version(module="jupyterlab_language_pack_fr_FR"):
"""Get version."""
with open(os.path.join(HERE, module, "__init__.py"), "r") as f:
data = f.read()
lines = data.split("\n")
for line in lines:
if line.startswith("__version__"):
version = ast.literal_eval(line.split("=")[-1].strip())
break
return version
def get_description():
"""Get long description."""
with open(os.path.join(HERE, "README.md"), "r") as f:
data = f.read()
return data
setup(
name="jupyterlab-language-pack-fr-FR",
version=get_version(),
description="Jupyterlab French Language Pack",
long_description=get_description(),
long_description_content_type="text/markdown",
keywords=["jupyterlab", "language", "language pack", "localization"],
url="https://github.com/jupyterlab/language-packs",
author="Project Jupyter Contributors",
author_email="jupyter@googlegroups.com",
license="BSD-3-Clause",
platforms="Linux, Mac OS X, Windows",
packages=find_packages(),
include_package_data=True,
entry_points={
"jupyterlab.languagepack": ["fr_FR = jupyterlab_language_pack_fr_FR"]
},
)