-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (45 loc) · 1.36 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import io
from setuptools import setup
with io.open("README.rst", encoding="utf-8") as readme_file:
readme = readme_file.read()
long_description = readme
setup(
name="datanonymizer",
version="0.2",
description="Anonymizer tool for datasets such CSV files",
long_description=long_description,
long_description_content_type="text/x-rst",
url="http://github.com/fgmacedo/datanonymizer",
author="Fernando Macedo",
author_email="[email protected]",
license="MIT",
packages=["datanonymizer"],
entry_points={
"console_scripts": [
"datanonymizer=datanonymizer:main",
],
},
install_requires=[
"h3>=3,<4",
"PyYAML>=5,<6",
"faker>=8,<9",
],
extras_require={
"mimesis": ["mimesis>=4,<5"],
},
zip_safe=False,
keywords="data anonymizer",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
"Topic :: Security",
],
)