-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 999 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
25
26
27
28
29
from pathlib import Path
from setuptools import find_packages, setup
setup_args = {
"name": "python-ezconfig",
"version": "0.2.0",
"author_email": "[email protected]",
"url": "https://github.com/zrxmax/python-ezconfig",
"license": "MIT",
"author": "zrxmax",
"description": "Super easy access to configuration file, by pretty interface",
"long_description": Path("README.md").read_text(encoding="utf-8"),
"long_description_content_type": "text/markdown",
"install_requires": [
"rich>=11.0.0",
],
"keywords": ["ezconfig", "python-ezconfig", "easyconfig", "easy", "pretty", "beatiful", "beauti", "config", "env"],
"classifiers": [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
"packages": find_packages(),
"python_requires": ">=3.7"
}
if __name__ == "__main__":
setup(**setup_args)