-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
96 lines (88 loc) · 2.62 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#!/usr/bin/env python3
# coding: utf-8
import io
import os
from dart_id.version import __version__
from os import path
from setuptools import setup, find_packages, Command
name = 'dart_id'
test_name = 'dart_id-fresca'
version=__version__
test_version='2.0.4'
# read the contents of your README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name=name,
version=version,
description='RT Alignment and Peptide ID Confidence Updating for LC-MS/MS Data',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/SlavovLab/DART-ID',
author='Albert Chen',
author_email='chen.alb@husky.neu.edu',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7 :: Only',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
keywords='bayesian retention time psm peptide spectra update',
project_urls={
'Documentation': 'https://github.com/SlavovLab/DART-ID',
'Source': 'https://github.com/SlavovLab/DART-ID',
'Tracker': 'https://github.com/SlavovLab/DART-ID/issues',
'Lab Page': 'https://web.northeastern.edu/slavovlab/'
},
packages=['dart_id'],
#libraries=[],
#setup_requires=[],
install_requires=[
'jsonschema==3.0.1',
'jupyter==1.0.0',
'matplotlib==3.1.2',
'nbconvert==5.6.1',
'nbformat==5.0.4',
'networkx>=2.1,<2.3',
'numpy==1.18.1',
'pandas==1.0.1',
'papermill==1.2.1',
'PyYAML==5.1',
'scikit-learn==0.22.2.post1',
'scipy==1.4.1',
'seaborn==0.9.0'
],
#test_requires=[
# 'pytest'
#],
extras_require={
},
include_package_data=True,
# specified in MANIFEST.in instead
#package_data={
# 'dart_id': [
# 'models/*', # STAN models
# 'figure_gen/*', # figure generation scripts
# 'figure_resources/*', # figure generation resources
# 'config/*', # config file schema and defaults
# 'fido/*' # fido scripts
# ]
#},
# data outside the package
#data_files=data_files,
entry_points={
'console_scripts': [
('dart_id=dart_id.update:main'),
('dart_id_convert=dart_id.converter:main'),
('dart_id_align=dart_id.align:main'),
('dart_id_update=dart_id.update:main'),
('dart_id_figures=dart_id.figures:main')#,
# ('dart_id_collate=dart_id.collate:main')
]
}
)