-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 778 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 778 Bytes
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
from setuptools import find_packages, setup
setup(
name="StepDistanceCalculator",
version="1.0.1",
description="Calculate walking step counts between places or cities based on total distance and step length.",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="StepDistanceCalculator Team",
license="MIT",
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
"matplotlib>=3.7.0",
"fpdf2>=2.7.0",
],
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
],
},
entry_points={
"console_scripts": [
"stepdistance=stepdistance.cli:main",
],
},
)