-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (25 loc) · 902 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
27
28
29
import os
from setuptools import find_namespace_packages, setup
with open(os.path.join("opensafely", "VERSION")) as f:
version = f.read().strip()
setup(
name="opensafely",
version=version,
packages=find_namespace_packages(exclude=["tests", "build", "venv*"]),
include_package_data=True,
url="https://github.com/opensafely-core/opensafely-cli",
description="Command line tool for running OpenSAFELY studies locally.",
license="GPLv3",
author="OpenSAFELY",
author_email="[email protected]",
python_requires=">=3.8",
install_requires=[
"setuptools",
],
entry_points={"console_scripts": ["opensafely=opensafely:main"]},
classifiers=["License :: OSI Approved :: GNU General Public License v3 (GPLv3)"],
project_urls={
"Homepage": "https://opensafely.org",
"Documentation": "https://docs.opensafely.org",
},
)