-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (40 loc) · 1.02 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
from setuptools import setup, find_packages
setup(
name='pubmetric',
version='0.1.0',
description='Cocitation based metric for workflow evaluation',
author='Alma Nilsson, Vedran Kasalica, Magnus Palmblad ',
author_email='[email protected]',
license='Apache License 2.0',
packages=find_packages(),
install_requires=[
'aiohttp==3.9.5',
'asyncio==3.4.3',
'igraph',
'requests',
'py4cytoscape==1.9.0',
'pandas',
'tqdm==4.66.2',
'numpy',
'matplotlib',
'jsonpath-ng',
'ruamel.yaml',
'cwl_utils',
'fastapi',
'scikit-learn',
'apscheduler'
],
extras_require={
'test': [
'pytest',
'pytest-datadir',
'pytest-asyncio'
]
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)