-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 831 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 831 Bytes
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
from setuptools import setup, find_packages
# here = pathlib.Path(__file__).parent.resolve()
print('kewl!!!!!!!!!')
if __name__ == "__main__":
setup()
# setup(
# name='plankton',
# version='0.1.0',
# description='A point process analysis project.',
# package_dir={'': 'plankton'},
# packages=find_packages('plankton'),
# python_requires=">3.7",
# install_requires=['numpy',
# 'anndata',
# 'scanpy',
# 'jupyter',
# 'matplotlib',
# 'numpy',
# 'pandas',
# 'plotly',
# 'scipy',
# 'scikit-image',
# 'scikit-learn',
# 'umap-learn',
# ]
# )