-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (49 loc) · 1.59 KB
/
setup.py
File metadata and controls
52 lines (49 loc) · 1.59 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
40
41
42
43
44
45
46
47
48
49
50
51
52
from setuptools import setup
#setup(name='ldsc',
# version='1.0',
# description='LD Score Regression (LDSC)',
# 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'],
# install_requires = [
# 'bitarray>=0.8,<0.9',
# 'nose>=1.3,<1.4',
# 'pybedtools>=0.7,<0.8',
# 'scipy>=0.18,<0.19',
# 'numpy>=1.16,<1.17',
# 'pandas>=0.20,<0.21'
# ]
#)
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='3.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'],
py_modules=['ldscore.ldsc_utils'], # Add this line to include ldsc_utils.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'
]
)