-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (25 loc) · 900 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
29
#-*-*- encoding: utf-8 -*-*-
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_ilabs',
version='0.1',
description="iLabs plug-in in the gateway4labs RLMS",
classifiers=classifiers,
author='Pablo Orduña, Christina Stuart',
author_email='[email protected], [email protected]',
url='http://github.com/gateway4labs/rlms_ilabs/',
license=cp_license,
py_modules=['g4l_rlms_ilabs'],
)