-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (44 loc) · 1.22 KB
/
setup.py
File metadata and controls
46 lines (44 loc) · 1.22 KB
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
46
# Copyright (C) 2014-2021 Sequent Tech Inc <legal@sequentech.io>
#
# SPDX-License-Identifier: AGPL-3.0-only
from setuptools import setup
setup(
name='frestq',
version='4.0.0',
author='Sequent Tech Inc',
author_email='legal@sequentech.io',
packages=['frestq'],
scripts=[],
url='http://pypi.python.org/pypi/frestq/',
license='AGPL-3.0',
description='simple federated rest task queue',
long_description=open('README.md').read(),
install_requires=[
'apscheduler==3.7.0',
'requests==2.31.0',
'Flask==2.3.2',
'Flask-SQLAlchemy==2.5.1',
'Jinja2==3.1.3',
'MarkupSafe==2.1.1',
'SQLAlchemy==1.3.23',
'Werkzeug==2.3.8',
'argparse==1.2.1',
'cffi==1.14.4',
'ipdb==0.13.9',
'ipython==8.10.0',
'itsdangerous==2.1.2',
'prettytable==0.7.2',
'pycparser==2.10',
'uwsgi==2.0.22',
'cryptography==42.0.4',
'pyOpenSSL==24.0.0',
'enum34==1.1.6',
'ipaddress==1.0.22',
],
classifiers=[
"Programming Language :: Python :: 3",
"OSI Approved :: GNU Affero General Public License v3"
],
python_requires='>=3.5',
dependency_links = []
)