update mglib

master
Eugen Ciur 2021-01-19 12:18:29 +01:00
parent 90352965e6
commit 2d7c96be4e
3 changed files with 24 additions and 23 deletions

View File

@ -1,18 +1,24 @@
=======
MgLib MgLib
======= =======
Python Package containing modules shared across all [Papermerge Project](https://github.com/ciur/papermerge) project. Python Package containing modules shared across all [Papermerge Project](https://github.com/ciur/papermerge) project.
## Installation ##############
Installation
##############
pip install mglib pip install mglib
###########
## Run tests Run tests
###########
python test/run.py python test/run.py
## Requirements ##############
Requirements
##############
python >= 3.7 python >= 3.7

14
setup.cfg Normal file
View File

@ -0,0 +1,14 @@
[metadata]
name = mglib
version = 1.3.6
description = Common code used across all Papermerge project utilities
long_description = file: README.rst
url = https://www.papermerge.com/
author = Eugen Ciur
author_email = eugen@papermerge.com
keywords= common, package, shared, papermerge, pdf, ocr, dms
license = Apache 2.0 License
classifiers =
"Programming Language :: Python :: 3"
"License :: OSI Approved :: Apache Software License"
"Operating System :: OS Independent"

View File

@ -1,25 +1,6 @@
from setuptools import find_packages, setup from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup( setup(
name="mglib",
version="1.3.5",
author="Eugen Ciur",
author_email="eugen@papermerge.com",
url="https://github.com/papermerge/mglib",
description="Common code used across all Papermerge project utilities",
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache 2.0 License",
keywords="common, package, shared, papermerge, pdf, ocr, dms",
packages=find_packages(), packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.7', python_requires='>=3.7',
) )