-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (32 loc) · 937 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
requirements = [
'Click>=7.0',
'streamlit',
'matchms',
'scipy'
]
setup(
author="Zahra ELHAMRAOUI",
author_email='zahra.elhamraoui@crg.eu',
python_requires='>=3.6',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
],
description="MSCI assesses peptide fragmentation spectra information content.",
install_requires=requirements,
license="MIT license",
include_package_data=True,
keywords='MSCI',
name='MSCI',
packages=find_packages(include=['MSCI', 'MSCI.*']),
test_suite='tests',
tests_require=requirements,
url='https://github.com/proteomicsunitcrg/MSCI',
version='0.1.0',
zip_safe=False,
)