forked from PAiewsakun/GRAViTy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (53 loc) · 1.47 KB
/
Copy pathsetup.py
File metadata and controls
56 lines (53 loc) · 1.47 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
53
54
55
#!/usr/bin/env python2.7
from setuptools import setup, find_packages
def readme():
with open('README.rst') as f:
return f.read()
setup( name = 'GRAViTy',
version = '1.1.0',
description = 'GRAViTy: Genome Relationships Applied to Virus Taxonomy',
long_description = readme(),
classifiers = [
#'Development Status :: 3 - Alpha',
#'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
#'Topic :: Text Processing :: Linguistic',
],
keywords = [
'Viruses',
'Virus classification', 'Virus classifier',
'ICTV', 'International Committee on Taxonomy of Viruses',
'GRAViTy',
'Metagenomics',
],
#url = 'https://github.com/PAiewsakun/GRAViTy',
author = 'Pakorn Aiewsakun, Peter Simmonds',
author_email = 'pakorn.aiewsakun@gmail.com, peter.simmonds@ndm.ox.ac.uk',
#license = 'MIT',
packages = ['GRAViTy','GRAViTy.Utilities'],
#packages = find_packages(),
scripts = [
'bin/booster',
'bin/ReadGenomeDescTable',
'bin/PPHMMDBConstruction',
'bin/RefVirusAnnotator',
'bin/GRAViTyDendrogramAndHeatmapConstruction',
'bin/MutualInformationCalculator',
'bin/UcfVirusAnnotator',
'bin/VirusClassificationAndEvaluation',
'bin/GRAViTy_Pipeline_I',
'bin/GRAViTy_Pipeline_II',
],
#dependency_links = ['http://github.com/user/repo/tarball/master#egg = package-1.0'],
install_requires = [
'Biopython',
'numpy',
'ete3',
'matplotlib',
'scikit-learn',
#'dcor',
'scipy',
'dendropy'
],
include_package_data = True,
zip_safe = False)