-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (35 loc) · 1004 Bytes
/
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
from distutils.core import setup
from setuptools import find_packages
from prwlr import __version__
from prwlr import __author__
VERSION = __version__
AUTHOR = __author__
setup(
name="prwlr",
version=VERSION,
author=AUTHOR,
packages=find_packages(exclude=["*test*"]),
install_requires=open("requirements.txt").readlines(),
python_requires='>3.5',
long_description=open("README.md").read(),
description="Annotate genetic interactions networks with phylogenetic profiles and other attributes.",
author_email="[email protected]",
url="https://github.com/dizak/prwlr",
license="BSD",
keywords=[
'genetic',
'interactions',
'network',
'phylogenetic',
'profile',
'module',
'pathway',
'kegg',
'evolution',
],
classifiers=[
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
],
)