-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
43 lines (41 loc) · 1.4 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
from setuptools import setup, find_packages
with open("pip_readme.md", "r") as f:
long_description = f.read()
setup(
name="evaluation_framework",
packages=find_packages(),
include_package_data=True,
# packages_data={"": ["data/*.tsv", "data/*.csv", "data/*.txt"]},
version="2.0",
license="apache-2.0",
description="Evaluation Framework for testing and comparing graph embedding techniques",
long_description=long_description,
author="Maria Angela Pellegrino",
author_email="[email protected]",
url="https://github.com/mariaangelapellegrino/Evaluation-Framework",
download_url="https://github.com/mariaangelapellegrino/Evaluation-Framework/archive/v_2.0.tar.gz",
keywords=[
"evaluation",
"graph-embedding",
"python",
"library",
"benchmark-framework",
"machine learning tasks",
"semantic tasks",
], # Keywords that define your package best
install_requires=[
"scikit-learn==0.23.1",
"scipy==1.5.1",
"h5py==2.10.0",
"numpy==1.22.0",
"pandas==1.0.5",
"pathlib2",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
],
)