forked from ding-lab/CharGer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (53 loc) · 1.95 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#https://docs.python.org/2/distutils/examples.html
from distutils.core import setup
version = "0.5.2"
setup( \
name = 'CharGer' ,
version = version ,
author = 'Adam D Scott, Kuan-lin Huang, Amila Weerasinghe' ,
maintainer = 'Adam D Scott' ,
maintainer_email = '[email protected]' ,
url = 'https://github.com/ding-lab/CharGer' ,
description = 'Characterization of Germline variants' ,
long_description = 'Characterization of Germline variants \
Following ACMG guidelines for genomic variant pathogenicity \
classification, CharGer cross-checks user variants against \
several public databases for information. CharGer then \
provides a pathogenicity score according to ACMG or \
CharGer\'s custom scale.' ,
download_url = 'https://github.com/ding-lab/CharGer/archive/v' + \
version + '.tar.gz' ,
scripts = ['bin/charger'] ,
keywords = [ "bioinformatics" , "genomics" , "pathogenic" , "benign" , \
"ClinVar" , "ExAC" , "VEP" , "BioMine" , "germline" , \
"variant" , "classifier" ] ,
classifiers = [ \
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)" ,
"Programming Language :: Python" ,
"Programming Language :: Python :: 2.7" ,
"Development Status :: 4 - Beta" ,
"Intended Audience :: Developers" ,
"Intended Audience :: Science/Research" ,
"Topic :: Internet" ,
"Topic :: Scientific/Engineering" ,
"Topic :: Scientific/Engineering :: Bio-Informatics" ,
"Topic :: Scientific/Engineering :: Chemistry" ,
] ,
license = 'GPL-3.0' ,
package_dir = { 'charger' : 'charger' ,
} ,
packages = [ \
'charger' ,
] , #each of the directories with modules (aka packages)
install_requires = [ \
'BioMine' ,
'AdvancedHTMLParser' ,
'requests' ,
'pysam' ,
'PyVCF' ,
'SciPy' ,
#'transvar' ,
] , #auto installs with pip install
#dependency_links = ['https://github.com/zwdzwd/transvar/archive/v2.1.23.20160321.tar.gz']
)