-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.23 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1.23 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
from setuptools import setup, find_packages
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
# 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', 'phosphoproteomics', 'data parsing', 'PTM'],
license='Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International',
description='ProteomeScoutAPI: Parser to interact with ProteomeScout data',
long_description=long_description,
long_description_content_type="text/markdown",
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
)