Skip to content

Commit dca071c

Browse files
authored
Merge pull request #70 from aj3sh/changelog-for-1.1.0
Preparation for release 1.1.0
2 parents d4c7349 + 79fb26b commit dca071c

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# CHANGELOG
22

3-
## main
3+
## v1.1.0
44

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

810
## v1.0.1 (May 16, 2023)
911
- Fixes on `nepalinumber` templatetags

setup.py

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919

2020
import setuptools
2121

22+
GITHUB_URL = "https://github.com/opensource-nepal/py-nepali"
23+
CHANGELOG_URL = "https://github.com/opensource-nepal/py-nepali/blob/main/CHANGELOG.md"
24+
2225
with open("README.md", "r") as fh:
2326
long_description = fh.read()
2427

@@ -35,7 +38,8 @@
3538

3639
setuptools.setup(
3740
name="nepali",
38-
version="1.0.1",
41+
version="1.1.0",
42+
license="MIT",
3943
author="opensource-nepal",
4044
4145
description="nepalidatetime compatible with python's datetime feature. "
@@ -50,13 +54,17 @@
5054
"python convert date",
5155
"parse nepali date time",
5256
],
53-
url="https://github.com/opensource-nepal/py-nepali",
54-
packages=setuptools.find_packages(),
57+
url=GITHUB_URL,
58+
packages=setuptools.find_packages(exclude=["tests*"]),
5559
test_suite="nepali.tests",
5660
install_requires=[],
5761
classifiers=[
5862
"Programming Language :: Python :: 3",
5963
"License :: OSI Approved :: MIT License",
6064
"Operating System :: OS Independent",
6165
],
66+
project_urls={
67+
"Source": GITHUB_URL,
68+
"Changelog": CHANGELOG_URL,
69+
},
6270
)

0 commit comments

Comments
 (0)