Skip to content

Commit

Permalink
downgrading python version needed, tweaking description, and adding l…
Browse files Browse the repository at this point in the history
…ong-description
  • Loading branch information
Tyl-OR committed Jan 25, 2021
1 parent 6703ce4 commit 88b086d
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions setup.py
@@ -1,8 +1,18 @@
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.0',
description='Turns structured data into unstructured data, such as docx or pdf files.',
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='opensource@openraven.com',
Expand All @@ -26,6 +36,6 @@
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
],
)

0 comments on commit 88b086d

Please sign in to comment.