Skip to content

Commit

Permalink
Update setup files
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleg Menteshashvili committed Aug 20, 2021
1 parent d6d5691 commit ef04b9e
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 16 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
46 changes: 30 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,34 @@
#!/usr/bin/env python

from setuptools.depends import get_module_constant
from setuptools import setup
from setuptools import setup, find_packages

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name='BlazingDocs',
packages=['blazingdocs'],
version=get_module_constant('blazingdocs', '__version__'),
description='BlazingDocs Python client',
long_description='High-performance document generation API. Generate documents and reports from СSV, JSON, XML with 99,9% uptime and 24/7 monitoring.',
author='Mentalstack',
author_email='hello@blazingdocs.com',
url='https://blazingdocs.com',
download_url='https://github.com/blazingdocs/blazingdocs-python',
keywords=['doc', 'docx', 'pdf', 'odt', 'report', 'document', 'template', 'office', 'openoffice', 'merge', 'xml', 'json', 'csv'],
install_requires=['requests>=2.26.0'],
classifiers=[],
license='MIT'
name="blazingdocs",
packages=find_packages(exclude=["examples"]),
version=get_module_constant("blazingdocs", "__version__"),
description="BlazingDocs Python client",
long_description=long_description,
long_description_content_type="text/markdown",
author="Mentalstack",
author_email="hello@blazingdocs.com",
url="https://blazingdocs.com",
download_url="https://github.com/blazingdocs/blazingdocs-python",
keywords=["doc", "docx", "pdf", "odt", "report", "document", "template", "office", "openoffice", "merge", "xml", "json", "csv"],
install_requires=["requests>=2.26.0"],
python_requires=">=3.9",
project_urls={
"Bug Tracker": "https://github.com/blazingdocs/blazingdocs-python/issues",
"Documentation": "https://docs.blazingdocs.com",
"Source Code": "https://github.com/blazingdocs/blazingdocs-python",
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules", ],
license="MIT"
)

0 comments on commit ef04b9e

Please sign in to comment.