-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 826 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import find_packages, setup
setup(
name="syndiffix_tools",
version="0.0.2",
packages=find_packages(exclude=["tests","examples"]),
description="A variety of tools for managing SynDiffix synthetic data.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Open Diffix",
url="https://github.com/diffix/syndiffix_tools",
install_requires=["syndiffix", "pyarrow"],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
)