forked from gateway4labs/rlms_unr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (24 loc) · 914 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
#-*-*- 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"
setup(name='g4l_rlms_unr',
version='0.1',
description="FCEIA/Universidad Nacional del Rosario physics laboratory plug-in in the gateway4labs project",
classifiers=classifiers,
author='Pablo Orduña, Federico Lerro',
author_email='[email protected], [email protected]',
url='http://github.com/gateway4labs/rlms_unr/',
license=cp_license,
py_modules=['g4l_rlms_unr'],
)