-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
19 lines (18 loc) · 827 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
setup(
name="FormatFusion",
version="0.2.6",
description="Effortlessly Convert Between Data Formats with FormatFusion. FormatFusion is your one-stop solution for seamless conversion between YAML, JSON, XML, and CSV formats.",
long_description=open("README.md").read(),
url="https://github.com/aliftech/FormatFusion",
author="Wahyu Krisna Aji",
author_email="wahyukrisnaaji32@gmail.com",
license="MIT",
classifiers=[
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
],
keywords=["FormatFusion", "json_to_yaml", "yaml_to_json", "json_to_xml", "yaml_to_xml",
"yaml_to_csv", "json_to_csv", "xml_to_csv", "csv_to_yaml", "csv_to_json", "csv_to_xml"]
)