-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (30 loc) · 850 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
31
32
33
34
35
36
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
###
# Copyright (c) 2024 Haofan Zheng
# Use of this source code is governed by an MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT.
###
from setuptools import setup
from setuptools import find_packages
import CanvasAPI._Meta
setup(
name = CanvasAPI._Meta.PKG_NAME,
version = CanvasAPI._Meta.__version__,
packages = find_packages(where='.', exclude=['setup.py']),
url = 'https://github.com/lsd-ucsc/CanvasAPI',
license = CanvasAPI._Meta.PKG_LICENSE,
author = CanvasAPI._Meta.PKG_AUTHOR,
description = CanvasAPI._Meta.PKG_DESCRIPTION,
entry_points= {
'console_scripts': [
'CanvasAPI=CanvasAPI.__main__:main',
]
},
install_requires=[
'requests==2.31.0',
'pandas==2.2.1',
'numpy==1.26.4',
],
)