-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 1.04 KB
/
setup.py
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
from codecs import open
from os import path
from setuptools import setup
ROOT = path.abspath(path.dirname(__file__))
with open(path.join(ROOT, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='parse-document-model',
version='0.2.2',
description='Pydantic models for representing a text document as a hierarchical structure.',
long_description=long_description,
long_description_content_type='text/markdown',
author='OneOffTech',
author_email='info@oneofftech.xyz',
license='MIT',
url='https://github.com/OneOffTech/parse-document-model-python',
project_urls={
'Source': 'https://github.com/OneOffTech/parse-document-model-python',
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Operating System :: OS Independent'
],
packages=['parse_document_model'],
include_package_data=True,
python_requires=">=3.9",
install_requires=['pydantic>=2.9.0']
)