-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (30 loc) · 1.23 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="ssmpy",
version="0.2.6",
description="Basic functions to start using semantic similarity measures directly from a rdf or owl file.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Andre Lamurias",
author_email="[email protected]",
maintainer="Francisco M Couto",
maintainer_email="[email protected]",
packages=["ssmpy"],
keywords=["graphs", "semantic similarity", "ontologies"],
url="https://github.com/lasigeBioTM/DiShIn",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_data={"ssmpy": ["data/*"]},
install_requires=["rdflib",
"pandas; python_version>='3.8'",
"sqlite3; python_version>='3.8'",
"math; python_version>='3.8'",
"multiprocessing; python_version>='3.8'",
"numpy>=1.19.5; python_version>='3.8'",
"numpy>=1.18.5, <=1.19.5; python_version<'3.8'"],
)