-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
53 lines (45 loc) · 1.72 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
50
51
52
53
import os
from setuptools import setup, find_packages
def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
with open('README.md', encoding='utf8') as readme_file:
readme = readme_file.read()
extra_files = package_files('anonympy')
setup(
author="ArtLabs",
author_email="art@artlabs.tech",
description="A Data Anonymization package for tabular, image and PDF data",
name="anonympy",
version="0.3.7",
packages=find_packages(exclude=['tests*']),
package_data={'anonympy': extra_files},
install_requires=['faker', 'scikit-learn', 'opencv_python',
'texttable', 'setuptools', 'numpy', 'pandas', 'validators',
'pycryptodome', 'requests', 'pyyaml', 'rfc3339',
'pytesseract', 'pypdf', 'poppler-utils', 'pdf2image',
'transformers', 'cape-dataframes>=0.3.1'],
python_requires='>=3.6',
url='https://github.com/ArtLabss/open-data-anonimizer',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Security :: Cryptography',
],
license="BSD license",
long_description=readme,
long_description_content_type='text/markdown',
keywords='anonympy',
zip_safe=False,
)