-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 748 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 748 Bytes
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
from setuptools import setup, find_packages
setup(
name='orca_pipeline',
version='0.1.3',
description='An orchestrater for ORCA pipelines.',
author='Joel',
author_email='joel@eloh.ch',
packages=find_packages(),
install_requires=[
'numpy>=1.18.0',
'matplotlib>=3.0.0',
'seaborn>=0.11.0',
'PyYAML>=5.3.1',
'pandas>=1.0.0',
'pyQRC @ git+https://github.com/patonlab/pyQRC.git@master#egg=pyQRC',
],
entry_points={
'console_scripts': [
'run_pipeline=orca_pipeline.scripts.run_pipeline:main',
],
},
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: UNIX',
],
python_requires='>=3.7',
)