-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (26 loc) · 966 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
import pathlib
from setuptools import setup, find_packages
local_path = pathlib.Path(__file__).parent
install_requires = (local_path / "requirements.txt").read_text().splitlines()
setup(
name="gdpr-helpers",
use_scm_version=True,
setup_requires=["setuptools_scm"],
package_dir={"": "src"},
install_requires=install_requires,
python_requires=">=3.7",
packages=find_packages("src"),
package_data={"": ["*.yaml"]},
include_package_data=True,
description="Synthetic Data for GDPR",
url="https://github.com/gretelai/gdpr-helpers",
license="https://gretel.ai/license/source-available-license",
classifiers=[
"Programming Language :: Python :: 3",
"License :: Free To Use But Restricted",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)