-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 931 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="nepali_date_utils",
version="0.3.1",
description="Convert Nepali to English Dates: Easily switch between Nepali and English dates with this Python package.",
author="Niraj Adhikari",
author_email="[email protected]",
packages=find_packages(),
license="GPLv3",
url="https://github.com/nrjadkry/nepali-date-utils",
install_requires=[],
keywords=["date", "nepali-date"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: GIS",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3.8",
],
long_description=long_description,
long_description_content_type="text/markdown",
)