-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1.13 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
setup(
name="load_xl",
version="1.0.1",
description="A library for parsing configuration files, including .env, .ini, .yaml, .json, .toml, and .xml formats.",
long_description=open("README.md").read() + "\n\n",
long_description_content_type="text/markdown",
author="sc4rfurry",
author_email="[email protected]",
url="https://github.com/sc4rfurry/load_xl",
packages=find_packages(),
classifiers=classifiers,
keywords=[
"config",
"configuration",
"parser",
"env",
"ini",
"yaml",
"json",
"toml",
"xml",
],
install_requires=["pyyaml", "jsonschema", "watchdog", "toml"],
entry_points={
"console_scripts": [
"load_xl=load_xl:cli",
],
},
python_requires=">=3.6",
)