-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.15 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
import sys
import os
from setuptools import setup, Extension, find_packages
if sys.version_info < (3, 11):
sys.stdout.write("At least Python 3.11 is required.\n")
sys.exit(1)
# Get the long description from the README file
with open(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'README.md')) as f:
long_description = f.read()
setup(
name='MSInspector',
version='2.1.0',
author='Yin Lu',
author_email='[email protected]',
description='Quality control of the five experiments in CPTAC assay portal',
long_description=long_description,
license='MIT',
package_dir={'': 'src'},
packages=find_packages('src', exclude=['.txt']),
package_data = {'MSInspector':['rScripts/*.R', 'skyrTemps/*.skyr', 'htmlTemps/*.html']},
install_requires=['pandas>=2.0.0', 'Jinja2>=3.1.2',
],
entry_points={'console_scripts': ['MSInspector = MSInspector.__main__:main']},
classifiers=[
"Development Status :: 1 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
)