-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (32 loc) · 1.04 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
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
from setuptools import setup
import os
import moodle
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name = 'moodle',
version=moodle.__version__,
url='',
license='GNU Affero General Public License v3',
author='Zikzakmedia SL',
author_email='[email protected]',
description='Moodle web services connection library',
long_description=(read('README') + '\n\n' + read('CHANGES')),
packages=['moodle'],
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'
],
)