-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
37 lines (35 loc) · 1.05 KB
/
setup.cfg
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
[metadata]
name = django-ecsmanage
description = Run any Django management command on an AWS Elastic Container Service (ECS) cluster.
long_description = file: README.rst
url = https://github.com/azavea/django-ecsmanage/
author = Azavea, Inc.
author_email = [email protected]
license = Apache License 2.0
classifiers =
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 3.2
Framework :: Django :: 4.2
Framework :: Django :: 5.0
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.12
[options]
include_package_data = True
packages = find:
python_requires = >=3.8
install_requires =
Django >=2.2
boto3 >=1.9.0
setup_requires =
setuptools_scm ==3.*
[options.extras_require]
tests =
flake8 >=3.7.7
black; python_version > "3.8"