forked from devsystemslab/snapseed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 714 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (22 loc) · 714 Bytes
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
from pathlib import Path
from setuptools import setup, find_packages
author = "Jonas Simon Fleck"
author_email = "jonas.simon.fleck@gmail.com"
description = "Superfast hierarchical annotation of large single-cell datasets"
long_description = Path("README.md").read_text("utf-8")
requirements = [
l.strip() for l in Path("requirements.txt").read_text("utf-8").splitlines()
]
setup(
name="snapseed",
version="0.1.0",
author=author,
author_email=author_email,
description=description,
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=requirements,
python_requires=">=3.9",
)