forked from OBrink/RanDepict
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (47 loc) · 1.7 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
45
46
47
48
49
50
#!/usr/bin/env python
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="RanDepict",
version="1.4.0",
author="Otto Brinkhaus",
author_email="[email protected], [email protected]",
maintainer="Otto Brinkhaus, Kohulan Rajan",
maintainer_email="[email protected], [email protected]",
description="RanDepict is an easy-to-use utility to generate a big variety of chemical structure depictions (random depiction styles and image augmentations).",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/OBrink/RanDepict",
packages=setuptools.find_packages(),
license="MIT",
install_requires=[
"numpy==1.23.5",
"imgaug",
"scikit-image",
"epam.indigo==1.11.0",
"jpype1",
"ipyplot",
"rdkit",
"imagecorruptions",
"pillow>=8.2.0",
"pikachu-chem>=1.0.7",
"omegaconf",
"typing-extensions;python_version<'3.8'"
],
extras_require={
"dev": ["tox", "pytest"],
},
package_data={"RanDepict": ["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.7",
)