-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 713 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 713 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='moodleteacher',
version='0.1.16',
url='https://github.com/troeger/moodleteacher',
license='BSD',
author='Peter Tröger',
description='A Moodle client library for teachers.',
author_email='peter@troeger.eu',
classifiers=[
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3'
],
install_requires=['requests', 'pexpect'],
extras_require={
'ui': ['wxPython', 'PyMuPDF']
},
packages=['moodleteacher']
)