-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (42 loc) · 1.14 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (42 loc) · 1.14 KB
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
from setuptools import setup, find_packages
import beta_dia
with open("README.md", "r") as readme_file:
long_description = readme_file.read()
setup(
name='beta_dia',
version=beta_dia.__version__,
license='Apache',
description='A cool project that does something awesome on diaPASEF data.',
author='Song Jian',
author_email='songjian2022@suda.edu.cn',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/YuAirLab/beta_dia",
packages=find_packages(),
include_package_data=True,
install_requires=[
'psutil',
'h5py',
'matplotlib',
'networkx',
'numba',
'numpy<2.0.0',
'pandas',
'pyzstd',
'scikit-learn',
'scipy',
'statsmodels',
'pyarrow',
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
python_requires='>=3.9',
entry_points={
'console_scripts': [
'beta_dia=beta_dia.dist.main:main',
],
},
)