-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
45 lines (41 loc) · 1.61 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
36
37
38
39
40
41
42
43
44
45
#-*-*- encoding: utf-8 -*-*-
from setuptools import setup
from collections import OrderedDict
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",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Education",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
cp_license="GNU AGPL v3"
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='weblablib',
version='0.5.7',
description="WebLab-Deusto library for creating unmanaged laboratories",
long_description=long_description,
long_description_content_type="text/markdown",
project_urls=OrderedDict((
('Documentation', 'https://developers.labsland.com/weblablib/en/stable/'),
('Code', 'https://github.com/weblabdeusto/weblablib'),
('Issue tracker', 'https://github.com/weblabdeusto/weblablib/issues'),
)),
classifiers=classifiers,
zip_safe=False,
author='LabsLand',
author_email='[email protected]',
url='https://developers.labsland.com/weblablib/',
license=cp_license,
packages=['weblablib', 'weblablib.backends'],
install_requires=['redis', 'flask', 'six', 'requests'],
)