Skip to content

Commit 1b6d2dd

Browse files
author
wjm41
authored
Merge pull request #19 from wjm41/release/publish
loosened dependencies
2 parents b5a3f3b + b01166f commit 1b6d2dd

File tree

2 files changed

+24
-24
lines changed

2 files changed

+24
-24
lines changed

setup.py

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="molplotly",
5-
version="1.1.2",
5+
version="1.1.4",
66
description="plotly add-on to render molecule images on mouseover",
77
long_description=open("README.md").read(),
88
long_description_content_type="text/markdown",
@@ -11,20 +11,21 @@
1111
license="Apache License 2.0",
1212
packages=find_packages(),
1313
install_requires=[
14-
"dash==2.0.0",
15-
"werkzeug==2.0.0",
16-
"pytest-cov ~= 3.0.0",
17-
"jupyter-dash",
18-
"plotly~=5.6.0",
19-
"pandas~=1.3.1",
20-
"ipykernel~=6.9.1",
21-
"scikit-learn~=1.0.0",
14+
"dash>=2.0.0",
15+
"werkzeug>=2.0.0",
16+
"jupyter-dash>=0.4.2",
17+
"plotly>=5.0.0",
18+
"pandas",
19+
"ipykernel",
20+
"nbformat",
2221
],
23-
extras_require={"test": ["pytest"]},
22+
extras_require={"test": ["pytest", "pytest-cov"]},
23+
keywords=["science", "chemistry", "cheminformatics"],
2424
classifiers=[
25-
"Programming Language :: Python :: 3.8",
26-
"Programming Language :: Python :: 3.9",
27-
"Programming Language :: Python :: 3.10",
28-
"Topic :: Scientific/Engineering",
25+
"Development Status :: 4 - Beta",
26+
"Intended Audience :: Science/Research",
27+
"Topic :: Scientific/Engineering :: Chemistry",
28+
"License :: OSI Approved :: Apache Software License",
29+
"Programming Language :: Python :: 3",
2930
],
3031
)

setup_pip.py

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,23 @@
1010
setup(
1111
name="molplotly",
1212
packages=["molplotly"],
13-
version="1.1.2",
13+
version="1.1.4",
1414
license="Apache License, Version 2.0",
1515
description="molplotly is an add-on to plotly built on RDKit which allows 2D images of molecules to be shown in scatterplots when hovering over the datapoints.",
1616
long_description=long_description,
1717
long_description_content_type="text/markdown",
1818
author="William McCorkindale",
1919
author_email="wjm41@cam.ac.uk",
2020
url="https://github.com/wjm41/molplotly",
21-
download_url="https://github.com/wjm41/molplotly/archive/refs/tags/v1.1.2.tar.gz",
21+
download_url="https://github.com/wjm41/molplotly/archive/refs/tags/v1.1.4.tar.gz",
2222
install_requires=[
23-
"dash==2.0.0",
24-
"werkzeug==2.0.0",
25-
"pytest-cov ~= 3.0.0",
26-
"jupyter-dash",
27-
"plotly~=5.6.0",
28-
"pandas~=1.3.1",
29-
"ipykernel~=6.9.1",
30-
"scikit-learn~=1.0.0",
23+
"dash>=2.0.0",
24+
"werkzeug>=2.0.0",
25+
"jupyter-dash>=0.4.2",
26+
"plotly>=5.0.0",
27+
"pandas",
28+
"ipykernel",
29+
"nbformat",
3130
],
3231
keywords=["science", "chemistry", "cheminformatics"],
3332
classifiers=[

0 commit comments

Comments
 (0)