-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSetup.py
More file actions
22 lines (21 loc) · 715 Bytes
/
Setup.py
File metadata and controls
22 lines (21 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name="mapconfig",
version="1.0.2",
description="A simple Python library for creating interactive maps with markers, circles, and custom icons",
author="cyrus-spc-tech",
author_email="tanishgupta12389@gmail.com",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
"folium>=0.19.0",
"requests>=2.25.0"
],
python_requires=">=3.6",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
],
)