-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (42 loc) · 1.21 KB
/
Copy pathsetup.py
File metadata and controls
44 lines (42 loc) · 1.21 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="msbuddy",
version="0.3.14",
author="Shipei Xing",
author_email="philipxsp@hotmail.com",
description="Molecular formula annotation for MS-based small molecule analysis.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Philipbear/msbuddy",
project_urls={
"Bug Tracker": "https://github.com/Philipbear/msbuddy/issues",
"Documentation": "https://msbuddy.readthedocs.io/en/latest/"
},
scripts=['msbuddy/main_cmd.py'],
entry_points={
'console_scripts': [
'msbuddy=msbuddy.main_cmd:main',
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
packages=["msbuddy"],
install_requires=[
"brain-isotopic-distribution",
"numpy",
"numba",
"requests",
"joblib",
"gdown",
"chemparse",
"scipy",
"tqdm",
"pandas"
],
python_requires=">=3.8"
)