-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
acpmasquerade
committed
Jun 17, 2024
1 parent
cb0f209
commit b34212d
Showing
3 changed files
with
12 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,6 @@ | |
*$py.class | ||
.env | ||
.venv | ||
dist/ | ||
build/ | ||
bikram.egg-info/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 2.0.0 | ||
current_version = 2.1.1 | ||
commit = True | ||
tag = True | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,26 +19,26 @@ | |
|
||
setup( | ||
name='bikram', | ||
version='2.1.0', | ||
version='2.1.1', | ||
description="Utilities to work with Bikram/Vikram Samwat dates.", | ||
long_description=readme + '\n\n' + history, | ||
author="keshaB Paudel", | ||
author_email='[email protected]', | ||
url='https://github.com/poudel/bikram', | ||
authors=["keshaB Paudel", "aerawatcorp", "acpmasquerade"], | ||
author_email='[email protected]', | ||
url='https://github.com/aerawatcorp/bikram', | ||
packages=[ | ||
'bikram', | ||
], | ||
package_dir={'bikram': | ||
'bikram'}, | ||
include_package_data=True, | ||
install_requires=requirements, | ||
license="GNU General Public License v3", | ||
license="MIT license", | ||
zip_safe=False, | ||
keywords='bikram', | ||
keywords='bikram bikram samwat vikram samwat nepali date', | ||
classifiers=[ | ||
'Development Status :: 2 - Pre-Alpha', | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | ||
'License :: OSI Approved :: MIT License', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 3.6', | ||
], | ||
|