- commit
- 71baf59384810ff9885038403e70029f7d001721
- parent
- 58c4e60e0e2a076ce22f15488c7d43c8eaba3845
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2023-11-05 10:36
switch to pyproject.toml
Diffstat
| D | MANIFEST.in | 1 | - |
| M | pyproject.toml | 29 | ++++++++++++++++++++++++++++- |
| D | setup.py | 22 | ---------------------- |
3 files changed, 28 insertions, 24 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
@@ -1 +0,0 @@1 -1 recursive-include django_bs/templates *.html
diff --git a/pyproject.toml b/pyproject.toml
@@ -1,3 +1,30 @@ 1 1 [build-system]2 -1 requires = ["setuptools", "wheel"]-1 2 requires = ["setuptools"] 3 3 build-backend = "setuptools.build_meta" -1 4 -1 5 [project] -1 6 name = "django-bs" -1 7 version = "5.1.0" -1 8 description = "simple bootstrap support for django" -1 9 readme = "README.md" -1 10 license = {text = "MIT"} -1 11 authors = [ -1 12 {name = "Tobias Bengfort", email = "tobias.bengfort@posteo.de"}, -1 13 ] -1 14 classifiers = [ -1 15 "Intended Audience :: Developers", -1 16 "License :: OSI Approved :: MIT License", -1 17 "Environment :: Web Environment", -1 18 "Framework :: Django", -1 19 ] -1 20 -1 21 [project.urls] -1 22 Homepage = "https://github.com/xi/django-bs" -1 23 -1 24 [tool.setuptools] -1 25 packages = ["django_bs"] -1 26 -1 27 [tool.setuptools.package-data] -1 28 django_bs = [ -1 29 "templates/**/*.html", -1 30 ]
diff --git a/setup.py b/setup.py
@@ -1,22 +0,0 @@1 -1 from setuptools import find_packages, setup2 -13 -14 -1 setup(5 -1 name='django-bs',6 -1 description='simple bootstrap support for django',7 -1 long_description=open('README.md').read(),8 -1 long_description_content_type='text/markdown',9 -1 url='https://github.com/xi/django-bs',10 -1 author='Tobias Bengfort',11 -1 author_email='tobias.bengfort@posteo.de',12 -1 version='5.1.0',13 -1 license='MIT',14 -1 packages=['django_bs'],15 -1 include_package_data=True,16 -1 classifiers=[17 -1 'Intended Audience :: Developers',18 -1 'License :: OSI Approved :: MIT License',19 -1 'Environment :: Web Environment',20 -1 'Framework :: Django',21 -1 ],22 -1 )