Skip to content

Commit d6cfe41

Browse files
authored
Merge pull request #13 from iamjazzar/tests
Update setup.py
2 parents b65b0fd + abe30a6 commit d6cfe41

File tree

3 files changed

+17
-14
lines changed

3 files changed

+17
-14
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Django>=3.2
2-
Mako==1.0.7
2+
Mako==1.2.0

setup.cfg

Lines changed: 0 additions & 2 deletions
This file was deleted.

setup.py

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,36 @@
11
#!/usr/bin/env python
2+
from pathlib import Path
3+
24
from setuptools import setup
35

6+
this_directory = Path(__file__).parent
7+
long_description = (this_directory / "README.md").read_text()
8+
49
setup(
510
name="djangomako",
6-
version="1.2.1",
11+
version="1.3.0",
712
packages=["djangomako"],
8-
install_requires=["Mako==1.0.7"],
13+
install_requires=["Mako==1.2.0"],
914
classifiers=[
1015
"Development Status :: 5 - Production/Stable",
1116
"Intended Audience :: Developers",
1217
"Operating System :: OS Independent",
13-
"Programming Language :: Python :: 2",
14-
"Programming Language :: Python :: 2.7",
1518
"Programming Language :: Python :: 3",
16-
"Programming Language :: Python :: 3.2",
17-
"Programming Language :: Python :: 3.3",
18-
"Programming Language :: Python :: 3.4",
19-
"Programming Language :: Python :: 3.6",
19+
"Programming Language :: Python :: 3.7",
20+
"Programming Language :: Python :: 3.8",
21+
"Programming Language :: Python :: 3.9",
22+
"Programming Language :: Python :: 3.10",
2023
"Framework :: Django",
21-
"Framework :: Django :: 2.1",
22-
"Framework :: Django :: 1.11",
24+
"Framework :: Django :: 3.2",
25+
"Framework :: Django :: 4.0",
2326
"License :: OSI Approved :: MIT License",
2427
"Topic :: Software Development",
2528
],
26-
url="https://github.com/ahmedaljazzar/django-mako",
29+
url="https://github.com/iamjazzar/django-mako",
2730
license="MIT License",
2831
author="Ahmed Jazzar",
2932
author_email="me@ahmedjazzar.com",
3033
description="The simple, elegant Django Mako library",
34+
long_description=long_description,
35+
long_description_content_type="text/markdown",
3136
)

0 commit comments

Comments
 (0)