-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
47 lines (42 loc) · 1.73 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
from setuptools import setup, find_packages
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
if __name__ == "__main__":
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Visualization',
]
KEYWORDS = ['scRNA-Seq', 'bioinformatics', 'single cell', 'analysis',
'graph', 'cell alignment', 'rna-seq', 'sequencing',
'shared nearest neighbors', 'knn', 'snn']
VERSION = open('VERSION').readline().rstrip('\n')
setup(
name='nabo',
description='Python library to perform memory efficient cross-sample cell mapping using single cell transciptomics (scRNA-Seq) data',
long_description=read('README.rst'),
author='Parashar Dhapola',
author_email='[email protected]',
maintainer='Parashar Dhapola',
maintainer_email='[email protected]',
url='https://github.com/parashardhapola/nabo',
license='BSD 3-Clause',
classifiers=CLASSIFIERS,
keywords=KEYWORDS,
install_requires=[x.strip() for x in open('requirements.txt')],
version=VERSION,
packages=find_packages(),
include_package_data=True,
scripts=[
'bin/nabo',
],
)