-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
101 lines (60 loc) · 1.92 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/usr/bin/env python
import sys
import os
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
from distutils.core import setup
if sys.version_info >= (3,1):
install_require = ["Orange3"]
elif sys.version_info < (3,0):
install_require = ["Orange"]
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "ymap",
version = "2.0.8",
description = "An automated method to map yeast variants to protein modifications and functional regions",
url = "https://github.com/CSB-KUL/yMap",
author = "Ahmed Arslan and Vera van Noort, KU Leuven, Belgium",
author_email = "vera.vannoort@kuleuven.be",
maintainer = "Ahmed Arslan",
maintainer_email = "ahmed.arslan@kuleuven.be",
license = "MIT",
long_description=read('README.md'),
keywords = (
'Biofinformatics',
'Proteins variants',
'PostTransational-Modifications (PTMs)',
'Proteins domains',
'Secondary Structures',
'Protein-Protein Interactions',
'Genomics',
'Proteomics',
'Gene Ontology',
'yMap',
),
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Education',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
install_requires = [install_require, "Orange-Bioinformatics"],
packages = ['ymap'],
include_package_data = True,
zip_safe = False,
entry_points={
'console_scripts': [
'ydata = ymap.ymap:data',
'ygenes = ymap.ymap:ymap_genes',
'yproteins = ymap.ymap:ymap_proteins',
'yweb = ymap.ymap:web',
'ytest = ymap.tests:main',
],
}
)