-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (41 loc) · 1.67 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 :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"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='labdiscoverylib',
version='0.6.0',
description="LabDiscoveryEngine library for creating unmanaged laboratories",
long_description=long_description,
long_description_content_type="text/markdown",
project_urls=OrderedDict((
('Documentation', 'https://developers.labsland.com/labdiscoverylib/en/stable/'),
('Code', 'https://github.com/labsland/labdiscoverylib'),
('Issue tracker', 'https://github.com/labsland/labdiscoverylib/issues'),
)),
classifiers=classifiers,
zip_safe=False,
author='LabsLand',
author_email='[email protected]',
url='https://developers.labsland.com/labdiscoverylib/',
license=cp_license,
packages=['labdiscoverylib', 'labdiscoverylib.backends'],
install_requires=['redis', 'flask<3', 'werkzeug<3', 'six', 'requests'],
)