Bump version to 0.2; Move version number into module
This commit is contained in:
parent
53b1b1ade8
commit
83e105dc30
@ -17,6 +17,7 @@ from .utils import MemEditError
|
|||||||
|
|
||||||
|
|
||||||
__author__ = 'Jan Petykiewicz'
|
__author__ = 'Jan Petykiewicz'
|
||||||
|
version = '0.2'
|
||||||
|
|
||||||
|
|
||||||
system = platform.system()
|
system = platform.system()
|
||||||
|
3
setup.py
3
setup.py
@ -1,6 +1,7 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
import mem_edit
|
||||||
|
|
||||||
|
|
||||||
with open('README.md', 'r') as f:
|
with open('README.md', 'r') as f:
|
||||||
@ -8,7 +9,7 @@ with open('README.md', 'r') as f:
|
|||||||
|
|
||||||
|
|
||||||
setup(name='mem_edit',
|
setup(name='mem_edit',
|
||||||
version='0.1',
|
version=mem_edit.version,
|
||||||
description='Multi-platform library for memory editing',
|
description='Multi-platform library for memory editing',
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type='text/markdown',
|
long_description_content_type='text/markdown',
|
||||||
|
Loading…
Reference in New Issue
Block a user