Skip to content

Commit

Permalink
new commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ChloeXWang committed Aug 7, 2020
2 parents b4b0e77 + 005c201 commit a5277b3
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
from distutils.core import setup

setup(
name = 'OCAT',
packages = ['OCAT'],
version = '0.1',
license='MIT',
description = 'A new single-cell analytics framework',
author = '',
author_email = '',
url = 'https://github.com/bowang-lab/OCAT', # Provide either the link to your github or to your website
download_url = 'https://github.com/user/reponame/archive/v_01.tar.gz', # I explain this later on
keywords = ['RNA-SEQ', 'CLUSTERING', 'INTEGRATION'],
install_requires=[
'numpy',
'pandas',
'faiss',
'sklearn',
'matplotlib',
'scipy'
],
classifiers=[
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers', # Define that your audience are developers
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License', # Again, pick a license
'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)

0 comments on commit a5277b3

Please sign in to comment.