-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (29 loc) · 1012 Bytes
/
setup.py
File metadata and controls
35 lines (29 loc) · 1012 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
29
30
31
32
33
34
35
"""
flagpole
=====
Flagpole is a Flag arg parser to build out a dictionary with optional keys.
:copyright: (c) 2017 by Netflix, see AUTHORS for more
:license: Apache, see LICENSE for more details.
"""
from setuptools import setup
import os
ROOT = os.path.realpath(os.path.join(os.path.dirname(__file__)))
install_requires = []
tests_require = ["pytest", "mock"]
docs_require = []
dev_require = ["pre-commit"]
setup(
name="flagpole",
version="1.1.1",
author="Patrick Kelley",
author_email="patrickbarrettkelley@gmail.com",
url="https://github.com/scriptsrc/flagpole",
description="Flagpole is a Flag arg parser to build out a dictionary with optional keys.",
long_description=open(os.path.join(ROOT, "README.md")).read(),
long_description_content_type="text/markdown",
packages=["flagpole"],
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
extras_require={"tests": tests_require, "docs": docs_require, "dev": dev_require},
)