-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
74 lines (71 loc) · 2.44 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
# -*- coding: utf-8 -*-
#
# Copyright (C) 2016 Mateusz Krzysztof Łącki and Michał Startek.
#
# This file is part of MassTodon.
#
# MassTodon is free software: you can redistribute it and/or modify
# it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
# Version 3.
#
# MassTodon is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
# Version 3 along with MassTodon. If not, see
# <https://www.gnu.org/licenses/agpl-3.0.en.html>.
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='masstodon',
packages=find_packages(),
version='0.15',
description='Investigate mass spectra for chemical substances, especially ETD products.',
long_description=long_description,
long_description_content_type="text/markdown",
author=u'Mateusz Krzysztof Łącki',
author_email='[email protected]',
url='https://github.com/MatteoLacki/masstodon',
# download_url='https://github.com/MatteoLacki/masstodon/tree/GutenTag',
keywords=[
'Mass Spectrometry',
'Mass spectra annotation.'
'Analytical Chemistry',
'ETD',
'Electron Transfer Dissociation',
'Fragmentation'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Chemistry',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.5'],
install_requires=[
'numpy',
'scipy',
'lxml',
'pyteomics>=3.4.1',
'cffi',
'IsoSpecPy==1.0.7',
'networkx>=2.0',
'matplotlib',
'intervaltree'],
# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
# for example:
# $ pip install -e .[dev,test]
# $ pip install -e ./[dev,test/] # for ZSH
extras_require={
'dev': ['ipython', 'matplotlib', 'plotly'],
'test': ['pytest']
},
scripts=[
'bin/plotly_spectrum',
'bin/masstodon',
'bin/masstodon_trial'
]
)