forked from facebookresearch/PyTorch-BigGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·55 lines (50 loc) · 2.12 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
51
52
53
54
55
#!/usr/bin/env python3
# Copyright (c) Facebook, Inc. and its affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
from setuptools import setup, find_packages
with open("README.md", "rt") as f:
long_description = f.read()
with open("requirements.txt", "rt") as f:
requirements = f.readlines()
setup(
name="torchbiggraph",
version="1.dev",
description="A distributed system to learn embeddings of large graphs",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/facebookresearch/PyTorch-BigGraph",
author="Facebook AI Research",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords="machine-learning knowledge-base graph-embedding link-prediction",
packages=find_packages(exclude=["docs", "tests"]),
install_requires=requirements,
entry_points={
"console_scripts": [
"torchbiggraph_config=torchbiggraph.config:main",
"torchbiggraph_eval=torchbiggraph.eval:main",
"torchbiggraph_export_to_tsv=torchbiggraph.converters.export_to_tsv:main",
"torchbiggraph_import_from_tsv=torchbiggraph.converters.import_from_tsv:main",
"torchbiggraph_partitionserver=torchbiggraph.partitionserver:main",
"torchbiggraph_train=torchbiggraph.train:main",
],
},
project_urls={
"Bug Reports": "https://github.com/facebookresearch/PyTorch-BigGraph/issues",
"Source": "https://github.com/facebookresearch/PyTorch-BigGraph",
},
)