forked from jupyrdf/ipyelk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (35 loc) · 1.17 KB
/
Copy pathsetup.py
File metadata and controls
40 lines (35 loc) · 1.17 KB
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
# Copyright (c) Dane Freeman.
# Distributed under the terms of the Modified BSD License.
import re
from pathlib import Path
import setuptools
HERE = Path(__file__).parent
name = "ipyelk"
setup_args = dict(
name=name,
description="ELK widget for Jupyter",
version=re.findall(
r'''__version__ = "([^"]+)"''', (HERE / name / "_version.py").read_text()
)[0],
packages=setuptools.find_packages(),
author="Dane Freeman",
author_email="dane.freeman@gtri.gatech.edu",
url="https://github.edu/dfreeman06/ipyelk",
license="BSD-3-Clause",
platforms="Linux, Mac OS X, Windows",
keywords=["Jupyter", "Widgets", "IPython", "ElkJS"],
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Framework :: Jupyter",
],
python_requires=">=3.7",
include_package_data=True,
install_requires=["ipywidgets>=7.5.0", "networkx"],
)
if __name__ == "__main__":
setuptools.setup(**setup_args)