-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
24 lines (21 loc) · 807 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
from pathlib import Path
from setuptools import setup
with open(Path(__file__).parent / "README.md") as f:
long_description = f.read()
setup(
name="func_argparse",
description="Generate CLI ArgumentParser from a function signature.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/gwenzek/func_argparse",
version="1.1.1",
author="gwenzek",
packages=["func_argparse"],
license="BSD",
install_requires=[],
# Mark the package as compatible with types.
# https://mypy.readthedocs.io/en/latest/installed_packages.html#making-pep-561-compatible-packages
package_data={"func_argparse": ["py.typed"]},
zip_safe=False,
extras_require={"dev": ["mypy>=0.730", "pytest", "black", "isort"]},
)