Skip to content

Commit afe8795

Browse files
committed
Update build files to follow current pypi recommandations
1 parent b2fefb7 commit afe8795

File tree

4 files changed

+33
-36
lines changed

4 files changed

+33
-36
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
dist/
2+
build/
3+
django-tellme-*/
24
django_tellme.egg-info/
35
.DS_Store
46
.idea/

pyproject.toml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[build-system]
2+
requires = [
3+
"setuptools>=42",
4+
"wheel"
5+
]
6+
build-backend = "setuptools.build_meta"

setup.cfg

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
[metadata]
2+
name = django-tellme
3+
version = 0.6.7
4+
url = https://github.com/ludrao/django-tellme
5+
author = Ludrao
6+
author_email = [email protected]
7+
classifiers =
8+
Development Status :: 4 - Beta
9+
Environment :: Web Environment
10+
Framework :: Django
11+
Intended Audience :: Developers
12+
License :: OSI Approved :: BSD License
13+
Operating System :: OS Independent
14+
Programming Language :: Python
15+
Programming Language :: Python :: 3
16+
Programming Language :: Python :: 3.2
17+
Programming Language :: Python :: 3.3
18+
Programming Language :: Python :: 3.5
19+
Topic :: Internet :: WWW/HTTP
20+
Topic :: Internet :: WWW/HTTP :: Dynamic Content
21+
description = A simple Django app that enables user feedback.
22+
long_description = file: README.rst
23+
24+
[options]
25+
python_requires = >=3.6

setup.py

-36
This file was deleted.

0 commit comments

Comments
 (0)