-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
36 lines (33 loc) · 1.16 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
import sys
if sys.version_info < (3,):
sys.exit('scnym requires Python >= 3.6')
from pathlib import Path
from setuptools import setup, find_packages
try:
from scnym import __author__, __email__
except ImportError: # Deps not yet installed
__author__ = __email__ = ''
setup(
name='scnym',
version='0.3.3',
description="Semi supervised adversarial network networks for single cell classification",
long_description="scNym uses the semi-supervised MixMatch framework and domain adversarial training to take advantage of information in both the labeled and unlabeled datasets.",
url='http://github.com/calico/scnym',
author=__author__,
author_email=__email__,
license='Apache',
python_requires='>=3.6',
install_requires=[
l.strip() for l in
Path('requirements.txt').read_text('utf-8').splitlines()
],
packages=find_packages(),
entry_points=dict(
console_scripts=['scnym=scnym.main:main', 'scnym_ad=scnym.scnym_ad:main'],
),
classifiers=[
'Environment :: Console',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
)