-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (42 loc) · 1.06 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
"""Setup"""
from setuptools import setup
setup(
name = 'katlas',
version = '0.1',
description = """
A python implementation of the substrate specificity atlas for the human kinome.
""",
author = "Cam İmran",
author_email = "[email protected]",
url = "https://github.com/kamurani/katlas",
license = "Apache License 2.0",
keywords = [
"kinase",
"kinome",
"binding",
"motif",
"protein",
],
install_requires = [
"numpy",
"pandas",
"biopython",
"ipython",
],
packages = [
"katlas",
],
entry_points = {
"console_scripts": [
"katlas = katlas.cli:main",
],
},
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)