forked from kshitij-raj-sharma/OSMSG-stats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 799 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
27
28
29
30
31
32
import io
from setuptools import setup
# Read the content of the README file
with io.open("README.md", encoding="utf-8") as f:
readme = f.read()
setup(
name="osmsg",
version="0.1.30",
description="OpenStreetMap Stats Generator : Commandline",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/kshitijrajsharma/OSMSG",
author="Kshitij Raj Sharma",
author_email="[email protected]",
license="MIT",
packages=["osmsg"],
entry_points={"console_scripts": ["osmsg = osmsg.app:main"]},
install_requires=[
"osmium",
"pandas==1.5.2",
"requests",
"Shapely",
"geopandas==0.10.2",
"tqdm",
"seaborn",
"matplotlib",
"humanize",
],
)