Skip to content

Commit

Permalink
Added setup.py for pip installation
Browse files Browse the repository at this point in the history
  • Loading branch information
srcrowl committed Jun 11, 2024
1 parent 1353673 commit e0c5d3b
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include ptm_pose/Resource_Files/modification_conversion.csv
24 changes: 24 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from setuptools import setup, find_packages


# Run setup
setup(
name="ptm_pose",
version="0.1.0",
author="Naegle Lab",
author_email="[email protected]",
url="https://github.com/NaegleLab/PTM-POSE/tree/main",
install_requires=['pandas==2.2.*', 'numpy==1.26.*', 'scipy=1.13.*', 'biopython==1.83.*', 'tqdm==4.66.*', 'xlrd', 'matplotlib', 'requests'],
license='GNU General Public License v3',
description='PTM-POSE: PTM Projection onto Splice Events',
long_description="""PTM-POSE is an open-source tool for annotating splice event quantification data with post-translational modifications (PTMs) and their functional consequences.""",
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
],
packages=find_packages(),
include_package_data = True,
python_requires=">=3.9"
)

0 comments on commit e0c5d3b

Please sign in to comment.