forked from Galithil/scilifelab_epps
-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
38 lines (34 loc) · 1.21 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
import glob
from setuptools import find_packages, setup
version = "1.0"
with open("requirements.txt") as rq:
requires = rq.readlines()
setup(
name="scilifelab_epps",
version=version,
python_requires=">=3.10",
install_requires=requires,
description="Collection of EPPs for the Scilifelab Stockholm node.",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
],
keywords="genologics api rest",
author="Per Kraulis",
author_email="[email protected]",
url="https://github.com/scilifelab/scilifelab_epps",
license="GPLv3",
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
scripts=[
file for file in glob.glob("scripts/*.py") if file != "scripts/__init__.py"
],
include_package_data=True,
zip_safe=False,
)