forked from gagneurlab/PROTRIDER
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (37 loc) · 1.23 KB
/
setup.py
File metadata and controls
38 lines (37 loc) · 1.23 KB
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
from setuptools import setup, find_packages
setup(
name='protrider',
version='1.0',
author="Ines Scheller, Daniela Klaproth-Andrade",
author_email = "daniela.andrade@tum.de",
description =
'''PROTRIDER
Protein outlier detection method
''',
python_requires = ">=3.7",
install_requires = ['click',
'numpy',
'pandas',
'pyaml',
'pathlib',
'torch',
'tqdm',
'optht',
'pydeseq2',
'scipy',
'scikit-learn',
'pathlib'
],
url='https://github.com/gagneurlab/PROTRIDER',
license='',
packages=find_packages(include=['protrider',
'protrider.*']),
zip_safe=False,
entry_points={
'console_scripts': [
'protrider = protrider.main:main',
],
},
include_package_data=True,
#package_data={'protrider': ['data/*.csv']},
)