2024-02-17 10:32:48 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
import re
|
|
|
|
|
2024-03-31 22:35:40 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
PACKAGE_NAME = 'socials-util'
|
2024-02-17 10:32:48 +00:00
|
|
|
|
2024-03-31 22:35:40 +00:00
|
|
|
with open('README.md') as f:
|
2024-02-17 10:32:48 +00:00
|
|
|
readme = f.read()
|
|
|
|
|
2024-03-31 22:40:20 +00:00
|
|
|
PACKAGE_PATH = PACKAGE_NAME.replace('-', '_')
|
|
|
|
|
|
|
|
with open(PACKAGE_PATH + '/_version.py') as f:
|
2024-03-31 22:35:40 +00:00
|
|
|
text = f.read()
|
|
|
|
match = re.match(r'^__version__\s*=\s*(["\'])([\d\.]+)\1$', text)
|
|
|
|
version = match.group(2)
|
|
|
|
del match, text
|
|
|
|
|
|
|
|
with open('requirements.txt') as f:
|
|
|
|
install_requires = f.read().strip().split('\n')
|
|
|
|
|
|
|
|
|
|
|
|
def get_short_description(readme: 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 = 'Could not determine short description'
|
|
|
|
raise Exception(msg) from err
|
|
|
|
|
2023-12-03 21:04:16 +00:00
|
|
|
|
|
|
|
setup(
|
2024-02-17 10:32:48 +00:00
|
|
|
name=PACKAGE_NAME,
|
|
|
|
version=version,
|
2024-03-31 22:35:40 +00:00
|
|
|
description=get_short_description(readme),
|
2024-02-17 10:32:48 +00:00
|
|
|
long_description=readme,
|
|
|
|
long_description_content_type='text/markdown',
|
2023-12-03 21:16:25 +00:00
|
|
|
author='Jmaa',
|
|
|
|
author_email='jonjmaa@gmail.com',
|
2024-03-31 22:35:40 +00:00
|
|
|
url='https://gitfub.space/Jmaa/' + PACKAGE_NAME,
|
2024-03-31 22:40:20 +00:00
|
|
|
packages=[PACKAGE_PATH],
|
2024-03-31 22:35:40 +00:00
|
|
|
install_requires=install_requires,
|
2023-12-03 21:04:16 +00:00
|
|
|
)
|