-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 813 Bytes
/
setup.py
File metadata and controls
24 lines (20 loc) · 813 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
import os
from setuptools import find_namespace_packages, setup
with open(os.path.join("osmatching", "VERSION")) as f:
version = f.read().strip()
setup(
name="opensafely_matching",
version=version,
packages=find_namespace_packages(exclude=["tests"]),
url="https://github.com/opensafely/matching",
description="Command line tool for matching cases to controls",
long_description=open("EXTRA_DOCS.md").read(),
long_description_content_type="text/markdown",
author="OpenSAFELY",
license="GPLv3",
author_email="tech@opensafely.org",
python_requires=">=3.10",
install_requires=["pandas", "pyarrow"],
entry_points={"console_scripts": ["match=osmatching.__main__:main"]},
classifiers=["License :: OSI Approved :: GNU General Public License v3 (GPLv3)"],
)