-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 963 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 963 Bytes
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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
requires = [
"beautifulsoup4>=4.13,<5",
"lxml>=6,<7",
]
setuptools.setup(
author="Xennis",
author_email="code@xennis.org",
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Text Processing :: Markup :: XML",
"Typing :: Typed",
],
description="Parser for EpiDoc (epigraphic documents in TEI XML)",
include_package_data=True, # ensure py.typed is considered
install_requires=requires,
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
name="epidoc-parser",
packages=["epidoc_parser"],
package_data={"epidoc_parser": ["py.typed"]},
python_requires=">=3.9",
url="https://github.com/Xennis/epidoc-parser",
version="0.0.1",
)