-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
41 lines (37 loc) · 1.15 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
38
39
40
41
[metadata]
name = django-settings-local
version = attr: django_settings_local.__version__
author = Fasih Ahmad Fakhri
author_email = [email protected]
description = Manage Django Local Settings
long_description = file: README.rst
keywords = django, local, settings
license = GPL-3.0
license_file = LICENSE
url = https://github.com/fasih/django-settings-local
classifiers =
Development Status :: 5 - Production/Stable
Framework :: Django
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development :: Libraries
[options]
package_dir=
=src
packages=find:
python_requires = >=3.6
[options.packages.find]
where=src
[options.entry_points]
console_scripts =
dsl = django_settings_local.__main__:main
[tool:pytest]
addopts = --tb=short --strict -ra --cov-report=xml --cov=src/
testpaths = tests