forked from dice-group/dice-embeddings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (35 loc) · 1.15 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
from setuptools import setup, find_packages
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name="dicee",
description="Dice embedding is an hardware-agnostic framework for large-scale knowledge graph embedding applications",
version="0.1.2",
packages=find_packages(),
install_requires=[
"torch>=2.0.0",
"pandas>=1.5.1",
"polars>=0.16.14",
"scikit-learn>=1.2.2",
"pyarrow>=11.0.0",
"pytorch-lightning==1.6.4",
"pykeen==1.10.1",
"zstandard>=0.21.0",
"pytest>=7.2.2",
"psutil>=5.9.4",
"ruff>=0.0.284",
"gradio>=3.23.0",
"rdflib>=7.0.0",
"tiktoken>=0.5.1",
"beautifulsoup4>=4.12.2"],
author='Caglar Demir',
author_email='caglardemir8@gmail.com',
url='https://github.com/dice-group/dice-embeddings',
classifiers=[
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License"],
python_requires='>=3.9.18',
entry_points={"console_scripts": ["dicee = dicee.run:main"]},
long_description=long_description,
long_description_content_type="text/markdown",
)