|  | 
|  | 1 | +[project] | 
|  | 2 | +name = "django-s3file" | 
|  | 3 | +authors = [ | 
|  | 4 | + { name = "Johannes Maron", email = "johannes@maron.family" } | 
|  | 5 | +] | 
|  | 6 | +readme = "README.rst" | 
|  | 7 | +license = { file = "LICENSE" } | 
|  | 8 | +dynamic = ["version", "description"] | 
|  | 9 | +classifiers = [ | 
|  | 10 | + "Development Status :: 6 - Mature", | 
|  | 11 | + "Environment :: Web Environment", | 
|  | 12 | + "Intended Audience :: Developers", | 
|  | 13 | + "License :: OSI Approved :: MIT License", | 
|  | 14 | + "Operating System :: OS Independent", | 
|  | 15 | + "Programming Language :: Python", | 
|  | 16 | + "Programming Language :: JavaScript", | 
|  | 17 | + "Topic :: Software Development", | 
|  | 18 | + "Programming Language :: Python :: 3", | 
|  | 19 | + "Programming Language :: Python :: 3 :: Only", | 
|  | 20 | + "Programming Language :: Python :: 3.9", | 
|  | 21 | + "Programming Language :: Python :: 3.10", | 
|  | 22 | + "Framework :: Django", | 
|  | 23 | + "Framework :: Django :: 3.2", | 
|  | 24 | + "Framework :: Django :: 4.0", | 
|  | 25 | +] | 
|  | 26 | +requires-python = ">=3.9" | 
|  | 27 | +dependencies = [ | 
|  | 28 | + "django>=2.0", | 
|  | 29 | + "django-storages", | 
|  | 30 | + "boto3", | 
|  | 31 | +] | 
|  | 32 | + | 
|  | 33 | +[project.optional-dependencies] | 
|  | 34 | +test = [ | 
|  | 35 | + "pytest >=2.7.3", | 
|  | 36 | + "pytest-cov", | 
|  | 37 | + "pytest-django", | 
|  | 38 | + "selenium", | 
|  | 39 | +] | 
|  | 40 | + | 
|  | 41 | +[project.urls] | 
|  | 42 | +Project-URL = "https://github.com/codingjoe/django-s3file" | 
|  | 43 | + | 
|  | 44 | +[build-system] | 
|  | 45 | +requires = ["flit_core>=3.2", "flit_scm", "wheel"] | 
|  | 46 | +build-backend = "flit_scm:buildapi" | 
|  | 47 | + | 
|  | 48 | +[tool.flit.module] | 
|  | 49 | +name = "s3file" | 
|  | 50 | + | 
|  | 51 | +[tool.setuptools_scm] | 
|  | 52 | +write_to = "s3file/_version.py" | 
|  | 53 | + | 
|  | 54 | +[tool.pytest.ini_options] | 
|  | 55 | +minversion = "6.0" | 
|  | 56 | +addopts = "--cov=s3file --cov-report xml --tb=short -rxs" | 
|  | 57 | +testpaths = [ | 
|  | 58 | + "tests", | 
|  | 59 | +] | 
|  | 60 | +DJANGO_SETTINGS_MODULE = "tests.testapp.settings" | 
|  | 61 | + | 
|  | 62 | +[tool.isort] | 
|  | 63 | +atomic = true | 
|  | 64 | +line_length = 88 | 
|  | 65 | +known_first_party = "s3file, tests" | 
|  | 66 | +include_trailing_comma = true | 
|  | 67 | +default_section = "THIRDPARTY" | 
|  | 68 | +combine_as_imports = true | 
|  | 69 | + | 
|  | 70 | +[tool.pydocstyle] | 
|  | 71 | +add_ignore = "D1" | 
0 commit comments