-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (35 loc) · 1.17 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
from setuptools import setup, find_packages
from codecs import open
from os import path
this_folder = path.abspath(path.dirname(__file__))
with open(path.join(this_folder,'README.md'),encoding='utf-8') as inf:
long_description = inf.read()
setup(
name='goodneighbors',
version='1.1.0',
description='Transform cell data to neighborhood data',
long_description=long_description,
url='https://github.com/jason-weirather/good-neighbors',
author='Jason L Weirather',
author_email='[email protected]',
license='Apache License, Version 2.0',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: Apache Software License'
],
keywords='bioinformatics',
packages=['goodneighbors'],
install_requires=['pandas>=0.23.0',
'scikit-learn',
'numpy',
'scipy',
'h5py',
'tables',
'plotnine'],
extras_require={
'multicore':['MulticoreTSNE'],
'test':['pythologist-test-images']
}
)