-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (25 loc) · 860 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
30
from os import path
from setuptools import find_packages, setup
__version__ = "2024.10.03.1"
here = path.abspath(path.dirname(__file__))
# get the dependencies and installs
with open(path.join(here, "requirements.txt"), encoding="utf-8") as f:
all_reqs = f.read().split("\n")
install_requires = [x.strip() for x in all_reqs if "git+" not in x]
setup(
name="canopy",
version=__version__,
description="Helper for Instructure Canvas API",
url="https://github.com/tylerclair/canopy",
author="Tyler Clair",
author_email="tyler.clair@gmail.com",
license="MIT",
packages=find_packages(exclude=["docs", "tests*"]),
include_package_data=True,
install_requires=install_requires,
entry_points={
"console_scripts": [
"canvas_api_builder = canopy.scripts.canvas_api_builder:cli",
],
},
)