-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
34 lines (32 loc) · 1.02 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
from setuptools import find_packages, setup
setup(
name="molplotly",
version="1.1.6",
description="plotly add-on to render molecule images on mouseover",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/wjm41/molplotly",
author="William McCorkindale",
license="Apache License 2.0",
packages=find_packages(),
install_requires=[
"dash>=2.0.0",
"werkzeug>=2.0.0",
"jupyter-dash>=0.4.2",
"plotly>=5.0.0",
"rdkit",
"pandas",
"ipykernel",
"nbformat",
],
extras_require={"test": ["pytest", "pytest-cov"]},
keywords=["science", "chemistry", "cheminformatics"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Chemistry",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
],
)
# TODO - change link in blog