-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.15 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
# setup.py
from setuptools import setup, find_packages
setup(
name='pyviewmaster', # Replace with your package name
version='0.1.2',
author='Scott Furlan',
author_email='[email protected]',
description='viewmastR uses machine learning implemented in Rust to perform automated cell type classification for single-cell genomic data. Currently viewmastR is authored to work with scRNAseq data, but more features are coming.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/furlan-lab/pyviewmaster', # Replace with your repository URL
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
# Add other classifiers as appropriate
],
install_requires=[
"numpy",
"pandas",
"scanpy",
"scikit-learn",
"scipy",
"rds2py",
"biocframe" # Add your package dependencies here
],
python_requires='>=3.9',
)
'''
micromamba activate scvelo_jupyter
cd /Users/sfurlan/develop/pyviewmaster
python setup.py sdist bdist_wheel
twine upload --skip-existing dist/*
'''