forked from vizzuhq/ipyvizzu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (38 loc) · 1.37 KB
/
setup.py
File metadata and controls
43 lines (38 loc) · 1.37 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
41
42
43
"""
ipyvizzu
Build animated charts in Jupyter Notebook
and similar environments with a simple Python syntax.
"""
from setuptools import setup # type: ignore
with open("requirements.txt", encoding="utf8") as fp:
requirements = fp.read().splitlines()
with open("README.md", encoding="utf8") as fp:
long_description = fp.read()
setup(
name="ipyvizzu",
version="0.15.0",
description="Build animated charts in Jupyter Notebook and similar environments with a simple Python syntax.", # pylint: disable=line-too-long
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache 2",
packages=["ipyvizzu", "ipyvizzu.integrations"],
package_dir={"ipyvizzu": "src/ipyvizzu"},
package_data={"ipyvizzu": ["py.typed", "templates/*.js"]},
python_requires=">=3.6",
install_requires=requirements,
extras_require={
"fugue": ["fugue>=0.8.1"],
},
url="https://github.com/vizzuhq/ipyvizzu",
project_urls={
"Documentation": "https://ipyvizzu.vizzuhq.com",
"Source": "https://github.com/vizzuhq/ipyvizzu",
"Tracker": "https://github.com/vizzuhq/ipyvizzu/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Environment :: Console",
],
)