forked from jfnavarro/st_analysis
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·58 lines (55 loc) · 1.59 KB
/
setup.py
File metadata and controls
executable file
·58 lines (55 loc) · 1.59 KB
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
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/python
"""
A tool kit for analysis, visualization and classification
of Spatial Transcriptomics datasets
"""
import os
import io
import glob
from setuptools import setup, find_packages
# Get the long description from the relevant file
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = 'stanalysis',
version = "0.5.1",
description = __doc__.split("\n", 1)[0],
long_description = long_description,
keywords = 'rna-seq analysis machine_learning spatial transcriptomics toolkit',
author = 'Jose Fernandez Navarro',
author_email = 'jose.fernandez.navarro@scilifelab.se',
license = 'MIT',
packages = find_packages(),
include_package_data = False,
package_data = {'': ['RELEASE-VERSION']},
zip_safe = False,
install_requires = [
'setuptools',
'argparse',
'scipy',
'numpy',
'pandas',
'sklearn',
'matplotlib',
'rpy2',
'Pillow',
'jinja2',
'tzlocal'
],
#test_suite = 'tests',
scripts = glob.glob('scripts/*.py'),
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Software Development',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: MIT:: Copyright Jose Fernandez Navarro',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Environment :: Console',
],
)