-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
73 lines (67 loc) · 1.56 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
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding='utf-8')
setup(
name='mappings',
version='0.1.0',
description="Mapping and Analysis of Phosphorylation Pathways Identified through Network/Graph Signalling",
long_description=long_description,
long_description_content_type='text/markdown',
author="Finn O'Donoghue",
author_email='[email protected]',
url='https://github.com/finnod/mappings',
keywords=[
'mapping',
'analysis',
'phosphorylation',
'pathways',
'network',
'graph',
'signalling',
'kinase',
'kinases',
'kinexus',
'protein',
'informatics',
'bioinformatics',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics',
'Intended Audience :: End Users/Desktop',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3'
],
packages=['mappings'],
entry_points={
'console_scripts': [
'mappings=mappings.__main__:main',
],
},
package_data={'mappings': [
'*.csv',
'data/input/*',
'data/*'
'.xml'
'images/*'
'.jpg',
'.png'
]
},
install_requires=[
'numpy',
'pandas',
'click',
'pathlib',
'networkx',
'tqdm'
],
)