mirror of
https://git.linux-kernel.at/oliver/ivatar.git
synced 2025-11-11 10:46:24 +00:00
Add the usual project files in order to build a tarball more easily
This commit is contained in:
10
MANIFEST.in
Normal file
10
MANIFEST.in
Normal file
@@ -0,0 +1,10 @@
|
||||
include *.py
|
||||
include *.md
|
||||
include COPYING
|
||||
include LICENSE
|
||||
recursive-include templates *
|
||||
recursive-include ivatar *
|
||||
exclude .virtualenv
|
||||
exclude libravatar.egg-info
|
||||
global-exclude *.py[co]
|
||||
global-exclude __pycache__
|
||||
3
pyproject.toml
Normal file
3
pyproject.toml
Normal file
@@ -0,0 +1,3 @@
|
||||
[build-system]
|
||||
requires = ['setuptools>=40.8.0', 'wheel']
|
||||
build-backend = 'setuptools.build_meta:__legacy__'
|
||||
33
setup.cfg
Normal file
33
setup.cfg
Normal file
@@ -0,0 +1,33 @@
|
||||
[metadata]
|
||||
name = libravatar
|
||||
version = 1.7.0
|
||||
description = A Django application implementing libravatar.org
|
||||
long_description = file: README.md
|
||||
url = https://libravatar.org
|
||||
author = Oliver Falk
|
||||
author_email = oliver@linux-kernel.at
|
||||
license = GPLv3
|
||||
classifiers =
|
||||
Environment :: Web Environment
|
||||
Framework :: Django
|
||||
Framework :: Django :: 3.2
|
||||
Framework :: Django :: 4.0
|
||||
Framework :: Django :: 4.1
|
||||
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
||||
Operating System :: OS Independent
|
||||
Programming Language :: Python
|
||||
Programming Language :: Python :: 3
|
||||
Programming Language :: Python :: 3 :: Only
|
||||
Programming Language :: Python :: 3.8
|
||||
Programming Language :: Python :: 3.9
|
||||
Programming Language :: Python :: 3.10
|
||||
Programming Language :: Python :: 3.11
|
||||
Topic :: Internet :: WWW/HTTP
|
||||
Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
||||
|
||||
[options]
|
||||
include_package_data = true
|
||||
packages = find:
|
||||
python_requires = >=3.8
|
||||
install_requires =
|
||||
Django >= 3.2
|
||||
Reference in New Issue
Block a user