forked from PHOENIXcenter/deeprtalign
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 779 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 779 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
29
30
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='deeprtalign',
version="1.2.2",
packages=find_packages(),
python_requires='>=3.4',
install_requires=[
'xlrd==1.2.0',
'pandas>=0.24',
],
package_data={
'deeprtalign': ['data/params.pt']
},
author='Yi Liu',
author_email='leoicarus@163.com',
description='retention time alignment tool for large cohort LC-MS data analysis',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/FineLiu/deeprtalign',
license='GPLv3',
entry_points = {
'console_scripts': ['deeprtalign=deeprtalign.__main__:get_arg_and_run']
}
)