Skip to content

Commit

Permalink
Pypi time (#18)
Browse files Browse the repository at this point in the history
* making pypi compatible
  • Loading branch information
njbernstein authored Jan 15, 2020
1 parent 265818d commit 026e1be
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 4 deletions.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Inside of setup.cfg
[metadata]
description-file = README.md
37 changes: 33 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,46 @@


setup(
name='solo',
version='0.1',
name='solo-sc',
version='0.2',
description='Neural network classifiers for doublets',
long_description=Path('README.md').read_text('utf-8'),
long_description_content_type="text/markdown",
url='http://github.com/calico/solo',
download_url='https://github.com/calico/solo/archive/0.1.tar.gz',
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()
install_requires=["ConfigArgParse==0.14.0",
"cycler==0.10.0",
"decorator==4.4.0",
"h5py==2.9.0",
"joblib==0.13.2",
"mock==3.0.5",
"natsort==6.0.0",
"networkx==2.2",
"numexpr==2.6.9",
"pandas==0.24.2",
"patsy==0.5.1",
"pyparsing==2.4.0",
"python-dateutil==2.8.0",
"pytz==2019.1",
"seaborn==0.9.0",
"six==1.12.0",
"statsmodels==0.9.0",
"tables==3.5.1",
"tqdm==4.32.1",
"umap-learn==0.3.8",
"scikit-learn==0.19.1",
"numba==0.45.0",
"numpy>=1.16.4",
"scvi==0.4.1",
"dataclasses==0.6",
"leidenalg==0.7.0",
"pytest==5.2.1",
"prompt-toolkit==2.0.9",
"torch==1.0.1"
],
packages=find_packages(),
entry_points=dict(
Expand Down

0 comments on commit 026e1be

Please sign in to comment.