-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.47 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (37 loc) · 1.47 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
34
35
36
37
38
39
from setuptools import setup, find_packages
import io
import os
# Read the contents of your README file
current_directory = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(current_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='fiveULTRA',
description='5ULTRA: A Pipeline for 5UTR Variant Annotation and Scoring',
long_description=long_description,
long_description_content_type='text/markdown',
author='Matthieu Chaldebas',
author_email='mchaldebas@rockefeller.edu',
license='CC BY-NC-ND 4.0',
url='https://github.com/mchaldebas/5ULTRA',
packages=find_packages(),
install_requires=['pysam>=0.22.1',
'pandas>=1.4.4',
'numpy>=2.0',
'joblib>=1.1.0',
'scikit-learn==1.6.1',
'requests',
'tqdm',
'gdown'
],
entry_points={'console_scripts': [
'5ULTRA=fiveULTRA.__main__:main',
'5ULTRA-download-data=fiveULTRA.download_data:main',
],
},
classifiers=['Programming Language :: Python :: 3',
'License :: Other/Proprietary License',
'Operating System :: OS Independent',
],
python_requires='>=2.1.0',
test_suite='tests',
)