-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
48 lines (45 loc) · 1.29 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
import setuptools
import os
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="mowl-borg",
version="1.0.2-dev.6",
author="Bio-Ontology Research Group",
author_email="[email protected]",
description="mOWL: A machine learning library with ontologies",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bio-ontology-research-group/mowl",
project_urls={
"Bug Tracker": "https://github.com/bio-ontology-research-group/mowl/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
package_dir={"": "."},
packages=setuptools.find_packages(where=".", exclude=("tests",)),
package_data={"mowl": ["lib/*.jar"]},
python_requires=">=3.9",
install_requires=[
"click",
"deprecated",
"gensim>=4.3.0",
"JPype1==1.5.1",
"matplotlib",
"networkx",
"numpy",
"pandas",
"pykeen==1.11.0",
"pyyaml",
"requests",
"scikit-learn",
"scipy<1.16.0",
"temp",
"tqdm",
"torch",
"urllib3"
],
)