-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
48 lines (42 loc) · 1.44 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 os
import pathlib
from setuptools import setup, find_packages
# python setup.py sdist bdist_wheel
# twine upload --skip-existing dist/*
# get __version__ from _version.py
ver_file = os.path.join("graph_embeddings", "_version.py")
with open(ver_file) as f:
exec(f.read())
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.rst").read_text()
setup(
name="graph-embeddings",
version=__version__,
description="Graph embeddings for downstream tasks",
long_description=README,
long_description_content_type="text/x-rst",
url="https://github.com/rodrigo-arenas/Graph-Embeddings",
author="Rodrigo Arenas",
author_email="[email protected]",
license="MIT",
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
],
project_urls={
"Documentation": "https://graph-embeddings.readthedocs.io/",
"Source Code": "https://github.com/rodrigo-arenas/Graph-Embeddings",
"Bug Tracker": "https://github.com/rodrigo-arenas/Graph-Embeddings/issues",
},
packages=find_packages(include=['graph_embeddings', 'graph_embeddings.*']),
install_requires=[
'networkx>=2.8.4',
'stellargraph>=1.2.1',
'chardet>=5.0.0',
'tqdm>=4.64.0',
],
python_requires=">=3.8",
include_package_data=True,
)