-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (48 loc) · 1.36 KB
/
setup.py
File metadata and controls
51 lines (48 loc) · 1.36 KB
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
51
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="markushgenerator",
version="1.0.0",
author="Lucas Morin",
author_email="lum@zurich.ibm.com",
description="A Python library",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(exclude=["tests.*", "tests"]),
package_data={"markushgenerator": ["data/*.json", "data/vocabulary/*.json"]},
install_requires=[
"svgpathtools",
"lxml",
"cairosvg",
"datasets",
"rdkit",
"scikit-learn",
"ipykernel",
"matplotlib",
"Pillow>=10.3.0",
"ipywidgets",
"torch",
"accelerate",
"transformers",
"SmilesPE",
"numpy==1.24.4",
"protobuf",
"sentencepiece"
],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Database",
"Programming Language :: Python :: 3",
],
extras_require={
"grapher": [
"markushgrapher @ git+https://git@github.com/DS4SD/MarkushGrapher.git",
],
},
python_requires=">=3.9",
)