-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 869 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 869 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
26
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from __future__ import absolute_import
from __future__ import print_function
from setuptools import find_packages
from setuptools import setup
with open("requirements.txt", "r", encoding="utf-8") as requirements:
setup(
name="automapping",
version="0.0.1",
description="Map free text columns automatically into medical standards",
author="Christopher Gundler",
author_email="c.gundler@uke.de",
url="https://github.com/UKEIAM/de.uke.iam.automapping",
package_dir={"": "src"},
packages=find_packages(where="src"),
include_package_data=True,
zip_safe=True,
python_requires=">=3.8",
install_requires=requirements.readlines(),
setup_requires=[
"pytest-runner",
],
)