-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 854 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
import os
with open(os.path.join(os.path.dirname(__file__), "requirements.txt")) as f:
requirements = f.read().splitlines()
setup(name='aestetik',
version='0.1.0',
description='AESTETIK: AutoEncoder for Spatial Transcriptomics Expression with Topology and Image Knowledge',
author='KalinNonchev',
author_email='boo@foo.com',
license='MIT License',
long_description_content_type='text/markdown',
long_description=open('README.md').read(),
url="https://github.com/ratschlab/aestetik",
packages=find_packages(where='src'), # Look in src/
package_dir={'': 'src'}, # Root is src/
include_package_data=True,
# external packages as dependencies,
install_requires=requirements,
python_requires='>=3.9'
)