forked from zikzakmedia/python-moodle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (34 loc) · 1.17 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
32
33
34
35
36
37
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2013 by
# Francisco Moreno Llorca <packo@assamita.net>
#
from setuptools import setup
import os
import moodle_ws_client
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name = 'moodle-ws-client',
version=moodle_ws_client.__version__,
url='https://github.com/kotejante/python-moodle',
license='GNU Affero General Public License v3',
author='Francisco Moreno',
author_email='packo@assamita.net',
description='Moodle web services (2.5) connection library ',
long_description=(read('README')),
packages=['moodle_ws_client'],
zip_safe=False,
platforms='any',
install_requires=[],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)