From cf7d161f44af56523a89fb65642668f5770139a2 Mon Sep 17 00:00:00 2001 From: abigailt Date: Mon, 2 Aug 2021 11:48:05 +0300 Subject: [PATCH] Files for pypi dist --- pyproject.toml | 6 ++++++ setup.cfg | 24 ++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 pyproject.toml create mode 100644 setup.cfg diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b5a3c46 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,6 @@ +[build-system] +requires = [ + "setuptools>=42", + "wheel" +] +build-backend = "setuptools.build_meta" \ No newline at end of file diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..f82cdb6 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,24 @@ +[metadata] +# replace with your username: +name = ai-privacy-toolkit +version = 0.0.3 +author = Abigail Goldsteen +author_email = abigailt@il.ibm.com +description = A toolkit for tools and techniques related to the privacy and compliance of AI models. +long_description = file: README.md +long_description_content_type = text/markdown +url = https://github.com/IBM/ai-privacy-toolkit +project_urls = + Documentation = https://ai-privacy-toolkit.readthedocs.io/en/latest/ +classifiers = + Programming Language :: Python :: 3 + License :: OSI Approved :: MIT License + Operating System :: OS Independent + +[options] +packages = find: +python_requires = >=3.6 + +[options.packages.find] +exclude = + tests \ No newline at end of file