-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 1.1 KB
/
setup.py
File metadata and controls
28 lines (26 loc) · 1.1 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
from setuptools import setup, find_packages
# Run setup
setup(
name="proteomeScoutAPI",
version="3.0.0",
author="Naegle Lab",
author_email="kmn4mj@virginia.edu",
url="https://github.com/NaegleLab/ProteomeScoutAPI",
install_requires=['pandas>=2', 'requests'],
keywords=['proteomescout', 'bioinformatics', 'proteomics', 'data parsing', 'PTM'],
license='GNU General Public License v3',
description='ProteomeScoutAPI: Parser to interact with ProteomeScout data',
long_description="""ProteomeScoutAPI is a Python module which can be used to interact with flatfiles from ProteomeScout, such as for annotating datasets with additional context.""",
project_urls = {
'Homepage': 'https://github.com/NaegleLab/ProteomeScoutAPI',
'Documentation': 'https://naeglelab.github.io/ProteomeScoutAPI/'},
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
],
packages=find_packages(),
include_package_data = True,
python_requires=">=3.9",
zip_safe = False
)