File tree Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1919
2020import 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+
2225with open ("README.md" , "r" ) as fh :
2326 long_description = fh .read ()
2427
3538
3639setuptools .setup (
3740 name = "nepali" ,
38- version = "1.0.1" ,
41+ version = "1.1.0" ,
42+ license = "MIT" ,
3943 author = "opensource-nepal" ,
40444145 description = "nepalidatetime compatible with python's datetime feature. "
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)
You can’t perform that action at this time.
0 commit comments