-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (32 loc) · 1.3 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
37
38
39
40
__module_name__ = "setup.py"
__doc__ = """PYPI package distribution setup."""
__author__ = ", ".join(["Michael E. Vinyard"])
__email__ = ", ".join(["[email protected]"])
# -- import packages: ----------------------------------------------------------
import setuptools
# -- fetch requirements packages: ---------------------------------------------
with open('requirements.txt') as f:
requirements = f.read().splitlines()
with open('torch_adata/__version__.py') as v:
exec(v.read())
# -- run setup: ---------------------------------------------------------------
setuptools.setup(
name="torch_adata",
version=__version__,
python_requires=">3.9.0",
author="Michael E. Vinyard",
author_email="[email protected]",
url="https://github.com/mvinyard/torch-adata",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
description="torch-adata: bridging AnnData-based data models to torch.",
packages=setuptools.find_packages(),
install_requires=requirements,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
license="MIT",
)