1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
7e6f39aecf
Renamed package to simpler distribution
All checks were successful
Python Package / Python-Test (push) Successful in 19s
Python Package / Python-Package (push) Successful in 21s
2024-05-23 00:36:27 +02:00
66ccc7dc3f
Bump version 2024-05-23 00:35:15 +02:00
2 changed files with 3 additions and 5 deletions

View File

@ -3,15 +3,13 @@ import re
from setuptools import setup
PACKAGE_NAME = 'socials-util'
PACKAGE_PATH = PACKAGE_NAME.replace('-', '_')
PACKAGE_NAME = 'socials_util'
with open('README.md') as f:
readme = f.read()
with open(PACKAGE_PATH + '/_version.py') as f:
with open(PACKAGE_NAME + '/_version.py') as f:
text = f.read()
match = re.match(r'^__version__\s*=\s*(["\'])([\d\.]+)\1$', text)
version = match.group(2)

View File

@ -1 +1 @@
__version__ = '0.1.2'
__version__ = '0.1.3'