forked from michaelmarty/UniDec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 793 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
setup_requires=["setuptools-git"],
name="unidec",
author="Michael Marty",
author_email="mtmarty@utexas.edu",
keywords="UniDec Mass Spectrometry Deconvolution Ion Mobility",
description='Universal Deconvolution of Electrospray Mass Spectrometry Data',
url="https://github.com/michaelmarty/UniDec",
python_requires='>=3.7',
packages=find_packages(
exclude=["Scripts", "Scripts.*", "*.Scripts", "*.Scripts.*", "test_GUI.py"]
),
include_package_data=True,
package_data={"": [ "readme.md", "LICENSE"]},
exclude_package_data={"": ["Scripts", "Scripts.*", "*.Scripts", "*.Scripts.*", ".gitignore", "unidec_doc"],
},
classifiers=[],
)