-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 899 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"
install_requires=[]
setup(name='g4l_rlms_academo',
version='0.1',
description="academo plug-in in the gateway4labs project",
classifiers=classifiers,
author='Pablo Orduña',
author_email='[email protected]',
url='http://github.com/gateway4labs/rlms_academo/',
install_requires=install_requires,
license=cp_license,
py_modules=['g4l_rlms_academo'],
)