-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (25 loc) · 756 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (25 loc) · 756 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
import setuptools
import konfi
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="konfi",
version=konfi.__version__,
author=konfi.__author__,
author_email="team@giesela.dev",
description="Python config management, but cute.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/gieseladev/konfi",
license="MIT",
packages=setuptools.find_packages(exclude=("examples", "tests")),
# entry_points={
# "console_scripts": [
# "konfi=konfi.cli:main",
# ]
# },
install_requires=["toml", "pyyaml"],
extras_require={
"docs": ["sphinx", "sphinx-autodoc-typehints"],
},
)