forked from mariaangelapellegrino/Evaluation-Framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.43 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
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 = '1.3',
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_1.3.tar.gz',
keywords = ['evaluation', 'graph-embedding', 'python', 'library', 'benchmark-framework', 'machine learning tasks', 'semantic tasks'], # Keywords that define your package best
install_requires=[
'numpy==1.14.0',
'pandas==0.22.0',
'scikit-learn==0.19.2',
'scipy==1.1.0',
'h5py==2.8.0',
'unicodecsv',
'pathlib2'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
],
)