🤖 Repository layout updated to latest version
This commit was automatically generated by a script: https://gitfub.space/Jmaa/python-omni
This commit is contained in:
parent
b44cc3edba
commit
55225748cf
|
@ -2,6 +2,6 @@
|
|||
<!--- THIS IS AN AUTO-GENERATED FILE --->
|
||||
<!--- MANUAL CHANGES CAN AND WILL BE OVERWRITTEN --->
|
||||
|
||||
Datagraph Library.
|
||||
# Datagraph Library.
|
||||
|
||||
Utility for working with scheme+ld and other data-graph and semantic web formats.
|
||||
|
|
23
setup.py
23
setup.py
|
@ -1,5 +1,3 @@
|
|||
#!/usr/bin/env python
|
||||
#
|
||||
# WARNING
|
||||
#
|
||||
# THIS IS AN AUTOGENERATED FILE.
|
||||
|
@ -12,9 +10,12 @@ from setuptools import setup
|
|||
|
||||
PACKAGE_NAME = 'datagraph'
|
||||
|
||||
with open('README.md') as f:
|
||||
readme = f.read()
|
||||
PACKAGE_DESCRIPTION = """
|
||||
# Datagraph Library.
|
||||
|
||||
Utility for working with scheme+ld and other data-graph and semantic web formats."""
|
||||
|
||||
PACKAGE_DESCRIPTION_SHORT='Utility for working with scheme+ld and other data-graph and semantic web formats.'
|
||||
|
||||
def parse_version_file(text: str) -> str:
|
||||
match = re.match(r'^__version__\s*=\s*(["\'])([\d\.]+)\1$', text)
|
||||
|
@ -37,16 +38,6 @@ def read_requirements(path: str) -> list[str]:
|
|||
return parse_requirements(f.read())
|
||||
|
||||
|
||||
def determine_short_description(readme: str) -> str:
|
||||
readme = re.sub(r'#+[^\n]*\n+', '', readme)
|
||||
m = re.search(r'^\s*(\w+[\w\s,`+-]+\.)', readme)
|
||||
try:
|
||||
return m.group(1)
|
||||
except AttributeError as err:
|
||||
msg = f'Could not determine short description: {readme}'
|
||||
raise Exception(msg) from err
|
||||
|
||||
|
||||
REQUIREMENTS_MAIN = """
|
||||
requests
|
||||
ratelimit
|
||||
|
@ -62,8 +53,8 @@ requests_cache
|
|||
setup(
|
||||
name=PACKAGE_NAME,
|
||||
version=version,
|
||||
description=determine_short_description(readme),
|
||||
long_description=readme,
|
||||
description=PACKAGE_DESCRIPTION_SHORT,
|
||||
long_description=PACKAGE_DESCRIPTION,
|
||||
long_description_content_type='text/markdown',
|
||||
author='Jmaa',
|
||||
author_email='jonjmaa@gmail.com',
|
||||
|
|
Loading…
Reference in New Issue
Block a user