mirror of https://github.com/papermerge/mglib
3 changed files with 24 additions and 23 deletions
@ -1,18 +1,24 @@ |
|||
======= |
|||
MgLib |
|||
======= |
|||
|
|||
Python Package containing modules shared across all [Papermerge Project](https://github.com/ciur/papermerge) project. |
|||
|
|||
## Installation |
|||
############## |
|||
Installation |
|||
############## |
|||
|
|||
pip install mglib |
|||
|
|||
|
|||
## Run tests |
|||
########### |
|||
Run tests |
|||
########### |
|||
|
|||
python test/run.py |
|||
|
|||
|
|||
## Requirements |
|||
############## |
|||
Requirements |
|||
############## |
|||
|
|||
python >= 3.7 |
@ -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" |
@ -1,25 +1,6 @@ |
|||
from setuptools import find_packages, setup |
|||
|
|||
with open("README.md", "r") as fh: |
|||
long_description = fh.read() |
|||
|
|||
|
|||
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(), |
|||
classifiers=[ |
|||
"Programming Language :: Python :: 3", |
|||
"License :: OSI Approved :: Apache Software License", |
|||
"Operating System :: OS Independent", |
|||
], |
|||
python_requires='>=3.7', |
|||
) |
|||
|
Loading…
Reference in new issue