-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (24 loc) · 735 Bytes
/
setup.py
File metadata and controls
30 lines (24 loc) · 735 Bytes
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
import pathlib
import setuptools
setuptools.setup(
# Module name (lowercase)
name='oxfordcanvastools',
version='1.1',
# Description
description='A minimal set of tools for interacting with the Canvas API at Oxford',
long_description=pathlib.Path('README.md').read_text(),
long_description_content_type='text/markdown',
# License name
license='MIT license',
# Maintainer information
maintainer='Fergus Cooper',
maintainer_email='fergus.cooper@cs.ox.ac.uk',
url='https://github.com/SABS-R3/oxfordcanvastools',
# Packages to include
packages=['oxfordcanvastools'],
# List of dependencies
install_requires=[
'requests'
],
python_requires='>=3.6',
)