diff --git a/.gitignore b/.gitignore index 47afd5d..c65c020 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ dist* build* -updatefromgit.egg-info* \ No newline at end of file +updatefromgit.egg-info* +setup.py \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..a2c96cc --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,22 @@ +[build-system] +requires = ["setuptools >= 61.0"] +build-backend = "setuptools.build_meta" + +[project] +name = "updatefromgit" +version = "1.0.1" +dependencies = ["msal", "azlog"] +requires-python = ">=3.6" +authors = [{ name = "Muhammad Samy", email = "muhssamy@gmail.com" }] +maintainers = [{ name = "Muhammad Samy", email = "muhssamy@gmail.com" }] +description = "Update Fabric Workspace From Git Repo using A user with Email And Password" +readme = "README.md" +keywords = ["python", "updatefromgit", "Microsoft Fabric"] +classifiers = [ + "Development Status :: 4 - Beta", + "Programming Language :: Python", + "Operating System :: OS Independent", +] + +[project.urls] +Repository = "https://github.com/muhssamy/updatefromgit"