Compare commits
No commits in common. "7e6f39aecff17ca24820a97882dfe66b4d0b2197" and "aa925275f1e40013228b903106efbac157ba2f59" have entirely different histories.
7e6f39aecf
...
aa925275f1
6
setup.py
6
setup.py
|
@ -3,13 +3,15 @@ import re
|
|||
|
||||
from setuptools import setup
|
||||
|
||||
PACKAGE_NAME = 'socials_util'
|
||||
PACKAGE_NAME = 'socials-util'
|
||||
|
||||
PACKAGE_PATH = PACKAGE_NAME.replace('-', '_')
|
||||
|
||||
|
||||
with open('README.md') as f:
|
||||
readme = f.read()
|
||||
|
||||
with open(PACKAGE_NAME + '/_version.py') as f:
|
||||
with open(PACKAGE_PATH + '/_version.py') as f:
|
||||
text = f.read()
|
||||
match = re.match(r'^__version__\s*=\s*(["\'])([\d\.]+)\1$', text)
|
||||
version = match.group(2)
|
||||
|
|
|
@ -1 +1 @@
|
|||
__version__ = '0.1.3'
|
||||
__version__ = '0.1.2'
|
||||
|
|
Loading…
Reference in New Issue
Block a user