forked from broadinstitute/tensorqtl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (39 loc) · 1.08 KB
/
setup.py
File metadata and controls
40 lines (39 loc) · 1.08 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
import os
import re
from setuptools import setup, find_packages
with open("tensorqtl/__init__.py") as reader:
__version__ = re.search(
r'__version__ ?= ?[\'\"]([\w.]+)[\'\"]',
reader.read()
).group(1)
_README = os.path.join(os.path.dirname(__file__), 'README.md')
_LONG_DESCRIPTION = open(_README).read()
# Setup information
setup(
name = 'tensorqtl',
version = __version__,
packages = find_packages(),
description = 'GPU-based QTL mapper',
author = 'Francois Aguet (Broad Institute)',
author_email = 'francois@broadinstitute.org',
long_description = _LONG_DESCRIPTION,
long_description_content_type='text/markdown',
entry_points = {
'console_scripts': [
'tensorqtl = tensorqtl:__main__'
]
},
install_requires = [
'numpy',
'pandas',
'pyarrow',
'scipy',
'pandas-plink',
'torch',
],
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
)