forked from belowlab/ldsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 956 Bytes
/
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
30
31
from setuptools import setup
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(name='ldsc',
version='2.0.2',
description='LD Score Regression (LDSC)',
long_description=long_description,
long_description_content_type='text/markdown',
url='http://github.com/bulik/ldsc',
author='Brendan Bulik-Sullivan and Hilary Finucane',
author_email='',
license='GPLv3',
packages=['ldscore'],
scripts=['ldsc.py', 'munge_sumstats.py', 'make_annot.py'],
install_requires = [
'bitarray==2.6.0',
'nose==1.3.7',
'numpy==1.23.3',
'pandas==1.5.0',
'pybedtools==0.9.1',
'pysam==0.19.1',
'python-dateutil==2.8.2',
'pytz==2022.4',
'scipy==1.9.2',
'six==1.16.0'
]
)