From b34212db2bbc2170ec800529f50d2dae5ab05dfc Mon Sep 17 00:00:00 2001 From: acpmasquerade Date: Tue, 18 Jun 2024 00:45:04 +0545 Subject: [PATCH] setup files modified --- .gitignore | 3 +++ setup.cfg | 2 +- setup.py | 16 ++++++++-------- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 23d05a1..d789724 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,6 @@ *$py.class .env .venv +dist/ +build/ +bikram.egg-info/ diff --git a/setup.cfg b/setup.cfg index bf74080..62b19ca 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.0 +current_version = 2.1.1 commit = True tag = True diff --git a/setup.py b/setup.py index 35ac694..ed197ce 100755 --- a/setup.py +++ b/setup.py @@ -19,12 +19,12 @@ 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='self@keshab.net', - url='https://github.com/poudel/bikram', + authors=["keshaB Paudel", "aerawatcorp", "acpmasquerade"], + author_email='aerawatcorp@gmail.com', + url='https://github.com/aerawatcorp/bikram', packages=[ 'bikram', ], @@ -32,13 +32,13 @@ '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', ],