forked from brielin/Popcorn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.12 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
30
31
32
33
34
35
36
37
38
import os
from setuptools import setup,find_packages
HERE = os.path.dirname(__file__)
version_file = open(os.path.join(HERE,'popcorn','VERSION'))
version = version_file.read().strip()
long_description = """
popcorn is a tool for estimating genetic correlation across multiple
populations from summary GWAS data. Please see Brown et. al.
'Transethnic genetic correlation estimates from summary statistics'
AJHG 2016
"""
with open(os.path.join(HERE, 'requirements.txt'), 'r') as f:
install_requires = [x.strip() for x in f.readlines()]
setup(
name='popcorn',
version=version,
install_requires=install_requires,
requires=['python (>=3.0)'],
packages=['popcorn'],
author='Brielin Brown',
description='A tool for estimating transethnic genetic correlation',
long_description=long_description,
url='github.com/brielin/popcorn',
package_dir={'popcorn': 'popcorn'},
package_data={'popcorn': []},
zip_safe=False,
include_package_data=True,
entry_points={
'console_scripts': [
'popcorn=popcorn.__main__:main',
],
},
author_email="[email protected]"
)