-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (23 loc) · 946 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("requirements.txt", "r") as fp:
requirements = list(filter(bool, (line.strip() for line in fp)))
setup(
name="em_workflows",
version="2.1.2",
author="Philip MacMenamin, Bradley Lowekamp, Anish Shrestha",
author_email="[email protected]",
description="Workflows for Microscopy related file processing.",
url="https://www.niaid.nih.gov/research/bioinformatics-computational-biosciences-branch",
license="BSD 3-Clause.",
classifiers=[
"Development Status :: Release",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD 3-Clause.",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
install_requires=requirements,
packages=find_packages(include=["em_workflows", "em_workflows.*"]),
package_data={"em_workflows": ["templates/*.adoc"]},
)