forked from gateway4labs/rlms_weblabdeusto
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (24 loc) · 856 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
from setuptools import setup
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: Freely Distributable",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
cp_license="MIT"
# TODO: depend on gateway4labs
setup(name='g4l_rlms_weblabdeusto',
version='0.1',
description="WebLab-Deusto plug-in in the gateway4labs RLMS",
classifiers=classifiers,
author='WebLab-Deusto Team',
author_email='[email protected]',
url='http://github.com/gateway4labs/rlms_weblabdeusto/',
packages=['g4l_rlms_weblabdeusto'],
license=cp_license,
)