-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
38 lines (33 loc) · 1.04 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
""" setup.py for zoom_client """
import os
import pathlib
import setuptools
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
# Pull requirements from the text file
REQUIREMENT_PATH = HERE / "requirements.txt"
INSTALL_REQUIRES = []
if os.path.isfile(REQUIREMENT_PATH):
with open(REQUIREMENT_PATH) as f:
INSTALL_REQUIRES = f.read().splitlines()
# This call to setup() does all the work
setuptools.setup(
name="zoom_client",
version="0.0.5",
description="Zoom (Video Communications) API Client",
long_description=README,
long_description_content_type="text/markdown",
author="CU Boulder, OIT",
author_email="[email protected]",
license="MIT",
keywords="zoom api requests",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=["zoom_client", "zoom_client.modules"],
python_requires=">=3.6",
install_requires=INSTALL_REQUIRES,
)