-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (34 loc) · 1.32 KB
/
setup.py
File metadata and controls
39 lines (34 loc) · 1.32 KB
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
#!/usr/bin/env python
import sys
import os
import glob
from distutils.core import setup
from distutils.command.install_data import install_data
from setuptools.command.install import install
# read the long description
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)),'README.md'),encoding='utf-8') as f:
long_description = f.read()
# read the package requirements
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)),'requirements.txt'),encoding='utf-8') as f:
install_requires = f.read().splitlines()
setup(name='GridNext',
version='0.0.1',
description='PyTorch based deep learning datasets and models for Spatial Transcriptomics (ST) data',
long_description=long_description,
long_description_content_type='text/markdown',
author="Aidan Daly",
author_email="adaly@nygenome.org",
url='https://github.com/adaly/gridnext',
license="BSD",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD 3-Clause "New" or "Revised" License (BSD-3-Clause)',
'Programming Language :: Python :: 3'],
packages=['gridnext'],
install_requires=install_requires,
cmdclass={
'install': install
},
include_package_data=True
)