aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: ac72e0233069b358c4c959f0d4bac25366b04cfe (plain)
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
import setuptools

from grobid_tei_xml import __version__

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

    setuptools.setup(
        name="grobid_tei_xml",
        version=__version__,
        python_requires=">=3.7",
        author="Bryan Newbold",
        author_email="bnewbold@archive.org",
        description="parser and transforms for GROBID-flavor TEI-XML",
        long_description=long_description,
        long_description_content_type="text/markdown",
        url="https://gitlab.com/internetarchive/grobid_tei_xml",
        packages=setuptools.find_packages(),
        classifiers=[
            "Programming Language :: Python :: 3",
            "License :: OSI Approved :: MIT License",
            "Operating System :: OS Independent",
        ],
        python_requires=">=3.8",
        install_requires=[],
        extras_require={"dev": [
            #"isort",
            "mypy",
            "pylint",
            "pytest",
            "pytest-cov",
            "yapf",
        ],},
    )