-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
33 lines (30 loc) · 1.23 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
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
__keywords__ = ["py-roughviz", "visualization", "sketchy charts", "hand-drawn charts"]
setup(
name="py-roughviz",
description="The Python implementation of JavaScript Library RoughViz to create sketchy charts.",
long_description_content_type='text/markdown',
long_description=long_description,
version="0.5.1",
author="Kaiqi Dong",
url="https://github.com/charlesdong1991/py-roughviz",
author_email="kaiqidong1991@gmail.com",
licnese="MIT License",
keywords=__keywords__,
packages=find_packages(exclude=["test*"]),
package_data={"": ["render/templates/*.html"]},
install_requires=["jinja2", "ipython", "pandas"],
download_url="https://github.com/charlesdong1991/py-roughviz/archive/v0.5.1.tar.gz",
tests_require=["pytest"],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries",
],
)