- Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
18 lines (17 loc) · 619 Bytes
/
Copy pathsetup.py
File metadata and controls
18 lines (17 loc) · 619 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
importsetuptools
setuptools.setup(
name="Spacell",
version="0.9.9",
author="Xiao Tan, Andrew Su, Quan Nguyen",
author_email="xiao.tan@uq.edu.au, a.su@uq.net.au, quan.nguyen@imb.uq.edu.au",
description="Spacell Package",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/BiomedicalMachineLearning/Spacell.git",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)