forked from glassonion1/anonypy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 829 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
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="anonypy",
version="0.1.7",
packages=find_packages(),
author="glassonion1",
author_email="[email protected]",
url="https://github.com/glassonion1/anonypy",
description="Anonymization library for python",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="k-anonymity l-diversity t-closeness mondrian",
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)