-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
29 lines (26 loc) · 925 Bytes
/
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
from setuptools import Command, find_packages, setup
__lib_name__ = "PROST"
__lib_version__ = "1.1.2"
__description__ = "PROST: A quantitative pattern recognition framework for spatial transcriptomics"
__url__ = "https://github.com/Tang-Lab-super/PROST"
__author__ = "Yuchen Liang"
__author_email__ = "[email protected]"
__license__ = "MIT"
__keywords__ = ["spatial transcriptomics", "PROST index", "PROST Neural Network"]
__requires__ = ["requests",]
with open("README.rst", "r", encoding="utf-8") as f:
__long_description__ = f.read()
setup(
name = __lib_name__,
version = __lib_version__,
description = __description__,
url = __url__,
author = __author__,
author_email = __author_email__,
license = __license__,
packages = ['PROST'],
install_requires = __requires__,
zip_safe = False,
include_package_data = True,
long_description = __long_description__
)