Rewrite setup.cfg
This commit is contained in:
parent
2c66ade95e
commit
b9d38bdf47
35
setup.cfg
35
setup.cfg
|
@ -1,3 +1,38 @@
|
|||
[metadata]
|
||||
name = django-crud-mixins
|
||||
version = 1.0.3
|
||||
author = Mark Veidemanis
|
||||
author_email = m@zm.is
|
||||
url = https://git.zm.is/XF/django-crud-mixins
|
||||
description = CRUD mixins for Django class-based views.
|
||||
long_description = file: README.md
|
||||
long_description_content_type = text/markdown
|
||||
keywords = django, mixins, helpers, crud
|
||||
license = MIT
|
||||
classifiers =
|
||||
License :: OSI Approved :: BSD License
|
||||
Programming Language :: Python :: 3
|
||||
Framework :: Django :: 4.1
|
||||
Intended Audience :: Developers
|
||||
|
||||
[options]
|
||||
packages = find:
|
||||
zip_safe = True
|
||||
include_package_data = True
|
||||
install_requires =
|
||||
django
|
||||
django-rest-framework
|
||||
|
||||
# [options.entry_points]
|
||||
# console_scripts =
|
||||
# my-example-utility = example.example_module:main
|
||||
|
||||
# [options.extras_require]
|
||||
# notebook = jupyter>=1.0.0, matplotlib
|
||||
# dev =
|
||||
# black==22.1.0
|
||||
# flake8==4.0.1
|
||||
|
||||
[options.package_data]
|
||||
mixins = templates/mixins/*, README.md
|
||||
* = README.md
|
Loading…
Reference in New Issue