forked from etrubbers/thonny-data_visualization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (24 loc) · 1013 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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="thonny-data_visualization",
version="1.0.1",
description="A Thonny plug-in to visualize your data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/etrubbers/thonny-data_visualization",
author=["Jean de Briey", "Etienne Rubbers"],
author_email=["[email protected]", "[email protected]"],
license="UCLouvain",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
],
keywords="Thonny, data visualization",
packages=['thonnycontrib.data_visualization', 'thonnycontrib.data_visualization.Graphical'],
python_requires=">=3.7",
install_requires=["thonny>=3.2.1", "networkx"]
)