-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
42 lines (38 loc) · 1.64 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
from os import path
from setuptools import setup, find_packages
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='mockingbird',
version='1.1.2',
description='Generate mock documents in various formats (CSV, DOCX, PDF, TXT, and more) that embed seed data and '
'can be used to test data classification software.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://www.github.com/openraven/mockingbird',
author='Open Raven Team',
author_email='[email protected]',
install_requires=['openpyxl==3.1.2',
'RandomWords==0.3.0',
'pyyaml==6.0.1',
'pyexcel-ods==0.6.0',
'python-docx==0.8.11',
'requests==2.25.0',
'pyarrow==14.0.2',
'numpy>=1.19.5',
'reportlab==3.6.12',
'pandas==1.5.2',
'avro==1.11.1',
'python-pptx==0.6.21',
'pyspark==3.3.1'],
license='apache',
entry_points={'console_scripts': ['mockingbird_cli=mockingbird.__command_line:main']},
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
],
)