forked from ducdetronquito/scalpl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (46 loc) · 1.24 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from setuptools import setup
with open("README.rst", "r", encoding="utf-8") as f:
readme = f.read()
setup(
name="scalpl",
packages=["scalpl"],
version="0.4.2",
description=("A lightweight wrapper to operate on nested dictionaries seamlessly."),
long_description=readme,
author="Guillaume Paulet",
author_email="[email protected]",
license="Public Domain",
url="https://github.com/ducdetronquito/scalpl",
download_url=("https://github.com/ducdetronquito/scalpl/archive/" "0.4.2.tar.gz"),
tests_require=[
"addict",
"mypy",
"pytest",
"pytest-cov",
"python-box",
"requests",
"black",
],
keywords=[
"dict",
"nested",
"proxy",
"traversable",
"dictionary",
"box",
"addict",
"munch",
"scalpl",
"scalpel",
"wrapper",
],
python_requires=">=3.6",
classifiers=[
"Intended Audience :: Developers",
"License :: Public Domain",
"Operating System :: OS Independent",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)