-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
31 lines (28 loc) · 1.14 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
import pathlib
from setuptools import setup
from zoom_cli import __version__
# adopted from: https://github.com/realpython/reader/blob/master/setup.py
README = (pathlib.Path(__file__).resolve().parent / "README.md").read_text()
# adopted from: https://stackoverflow.com/questions/6947988/when-to-use-pip-requirements-file-versus-install-requires-in-setup-py
REQUIREMENTS = [i.strip().split("=")[0] for i in open("requirements.txt").readlines()]
setup(
name="zoom_cli",
version=__version__,
description="Save and launch Zoom meetings from the command line",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/tmonfre/zoom-cli",
author="Thomas Monfre",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
packages=["zoom_cli"],
include_package_data=True,
install_requires=REQUIREMENTS,
entry_points={"console_scripts": ["zoom_cli=zoom_cli.__main__:main"]},
)