-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
23 lines (20 loc) · 1022 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
#!/usr/bin/env python
####################################################################
# ### setup.py ###
####################################################################
# ### Author: SAS Institute Inc. ###
####################################################################
# ###
# Copyright (c) 2021, SAS Institute Inc., Cary, NC, USA. ###
# All Rights Reserved. ###
# SPDX-License-Identifier: Apache-2.0 ###
# ###
####################################################################
from setuptools import find_packages, setup
setup(
setup_requires=["pbr"],
pbr=True,
licenses_files=["LICENSE"],
packages=find_packages(exclude=["tests", "*.tests", "*.tests.*", "tests.*"]),
python_requires=">=3.6",
)