-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 1.16 KB
/
setup.py
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
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="ptm_pose",
version="0.2.0",
author="Naegle Lab",
author_email="kmn4mj@virginia.edu",
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.*', 'gseapy==1.1.*', 'networkx==3.3', 'xlrd', 'matplotlib','seaborn', 'requests'],
license='GNU General Public License v3',
description='PTM-POSE: PTM Projection onto Splice Events',
long_description=long_description,
long_description_content_type="text/markdown",
project_urls = {'Issues': 'https://github.com/NaegleLab/PTM-POSE/issues', 'Documentation': 'https://naeglelab.github.io/PTM-POSE/'},
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
],
packages=find_packages(),
include_package_data = True,
python_requires=">=3.10"
)