-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
44 lines (42 loc) · 1.66 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
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="cider-chem",
version="1.0.0",
author="Hannah Busch",
author_email="[email protected]",
maintainer="Jonas Schaub, Otto Brinkhaus, Kohulan Rajan",
description="ChemIcal DatasEt compaRator (CIDER) is a Python package which primarily utilizes RDKit to compare and visualize different chemical compounds from two different datasets.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hannbus/ChemIcal_DatasEt_compaRator",
packages=setuptools.find_packages(),
license="MIT",
install_requires=[
"notebook",
"seaborn==0.11.2",
"matplotlib==3.5.1",
"matplotlib_venn==0.11.6",
"fpdf2==2.6.0",
"rdkit-pypi==2022.9.5",
"pytest",
"scikit-learn==1.5.0",
"chemplot @ git+https://github.com/Kohulan/ChemPlot.git@main#egg=chemplot",
"bokeh==2.4.3",
],
package_data={"CIDER": ["assets/*.*", "assets/*/*.*", "assets/*/*/*.*"]},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.5",
)