forked from wjm41/molplotly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup_pip.py
39 lines (36 loc) · 1.32 KB
/
setup_pip.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
35
36
37
38
39
from distutils.core import setup
from setuptools import setup
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="molplotly",
packages=["molplotly"],
version="1.1.5",
license="Apache License, Version 2.0",
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.",
long_description=long_description,
long_description_content_type="text/markdown",
author="William McCorkindale",
author_email="[email protected]",
url="https://github.com/wjm41/molplotly",
download_url="https://github.com/wjm41/molplotly/archive/refs/tags/v1.1.4.tar.gz",
install_requires=[
"dash>=2.0.0",
"werkzeug>=2.0.0",
"jupyter-dash>=0.4.2",
"plotly>=5.0.0",
"pandas",
"ipykernel",
"nbformat",
],
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",
],
)