Skip to content

Commit

Permalink
Merge pull request #70 from aj3sh/changelog-for-1.1.0
Browse files Browse the repository at this point in the history
Preparation for release 1.1.0
  • Loading branch information
sugat009 authored Jun 20, 2023
2 parents d4c7349 + 79fb26b commit dca071c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# CHANGELOG

## main
## v1.1.0

- Depreciated templatetags.
- Depreciated templatetags and added support from `django-nepali` package.
- Updated README.md for `django-nepali` package.
- Added source and changelog on the package information
- Excluded tests from the package

## v1.0.1 (May 16, 2023)
- Fixes on `nepalinumber` templatetags
Expand Down
14 changes: 11 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@

import setuptools

GITHUB_URL = "https://github.com/opensource-nepal/py-nepali"
CHANGELOG_URL = "https://github.com/opensource-nepal/py-nepali/blob/main/CHANGELOG.md"

with open("README.md", "r") as fh:
long_description = fh.read()

Expand All @@ -35,7 +38,8 @@

setuptools.setup(
name="nepali",
version="1.0.1",
version="1.1.0",
license="MIT",
author="opensource-nepal",
author_email="[email protected], [email protected]",
description="nepalidatetime compatible with python's datetime feature. "
Expand All @@ -50,13 +54,17 @@
"python convert date",
"parse nepali date time",
],
url="https://github.com/opensource-nepal/py-nepali",
packages=setuptools.find_packages(),
url=GITHUB_URL,
packages=setuptools.find_packages(exclude=["tests*"]),
test_suite="nepali.tests",
install_requires=[],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
project_urls={
"Source": GITHUB_URL,
"Changelog": CHANGELOG_URL,
},
)

0 comments on commit dca071c

Please sign in to comment.