forked from ckmah/gsea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.01 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
from os import walk
from setuptools import setup
NAME = 'gsea'
URL = 'https://github.com/KwatME/gsea'
packages = []
for dp, dns, fns in walk(NAME):
if dp.split(sep='/')[-1] not in (
'.git',
'__pycache__', ):
packages.append(dp)
setup(
name=NAME,
version='0.1.0',
description='Library for gene-set enrichment analysis.',
long_description='See {} to learn more.'.format(URL),
url=URL,
author='(Kwat) Huwate Yeerna',
author_email='[email protected]',
license='LICENSE',
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Natural Language :: English',
'Topic :: Scientific/Engineering :: Bio-Informatics', ),
keywords='Bioinformatics, Gene Set, Enrichment, GSEA',
packages=packages,
python_requires='>=3.3',
install_requires=(
'numpy',
'pandas',
'matplotlib', ))