-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
34 lines (31 loc) · 1.11 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
from __future__ import print_function
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="dleamse",
version="0.3.6",
author="BigBio Team",
author_email="[email protected]",
description=" dleamse's encoding and embedding methods, and dleamse's faiss index (IndexIDMap type) write.",
long_description_content_type="text/markdown",
long_description=long_description,
license="'Apache 2.0",
url="https://github.com/bigbio/DLEAMSE",
packages=["dleamse"],
scripts=['dleamse/mslookup.py'],
install_requires=['numba>=0.45',
'numpy>=1.13.3',
'pyteomics>=3.5.1',
'torch==2.2.0',
'faiss-cpu>=1.5.3',
'more_itertools == 7.1.0'],
platforms=['any'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
python_requires='>3.5',
)