-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 752 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
import setuptools
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
packages=setuptools.find_packages(),
install_requires=requirements,
name='scProject',
version='1.1.4',
author='Asher Baraban, Charles Shin, Loyal Goff, Genevieve Stein-O\'Brien',
author_email='asher.baraban@wustl.edu, cshin12@jhu.edu',
scripts=[],
url="https://github.com/gofflab/scProject",
license='MIT',
description='Transfer learning framework for single cell gene expression analysis in Python',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 5 - Production/Stable'
]
)