forked from bedapub/besca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 1.19 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
if __name__ == '__main__':
from setuptools import setup, find_packages
import versioneer
with open('requirements.txt', encoding='utf-8') as requirements:
requires = [l.strip() for l in requirements]
setup(name='besca',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='collection of BEDA internal python functions for analysing single cell RNAseq data',
long_description='please view https://pages.github.com/bedapub/besca/',
classifiers=[
'Development Status :: Release 2.4 (Scanpy 1.6)',
'Programming Language :: Python :: 3.7.1',
'License :: GPLv3'],
url='https://github.com/bedapub/besca',
license='GPLv3',
author='BEDA community',
author_email='alice.julien-laferriere@roche.com',
packages=find_packages(),
zip_safe=False,
package_data={'besca.datasets.data': ['*.h5ad'], 'besca.st': ['*.css'],
'besca.datasets.nomenclature': ['*.tsv'],
'besca.datasets.mito_files': ['*.tsv'], 'besca.export': ['reformat'], 'besca.datasets.genesets': ['*.gmt', '*.tsv']},
install_requires=requires)