Use separate VERSION file

lethe/HEAD
Jan Petykiewicz 5 years ago
parent 2259e7987b
commit f471374b68

@ -1,2 +1,3 @@
include README.md
include LICENSE.md
include masque/VERSION

@ -23,6 +23,8 @@
- svgwrite [masque.file.svg]
"""
import pathlib
from .error import PatternError
from .shapes import Shape
from .label import Label
@ -33,4 +35,6 @@ from .pattern import Pattern
__author__ = 'Jan Petykiewicz'
version = '0.5'
with open(pathlib.Path(__file__).parent / 'VERSION', 'r') as f:
__version__ = f.read().strip()
version = __version__

@ -1,13 +1,15 @@
#!/usr/bin/env python3
from setuptools import setup, find_packages
import masque
with open('README.md', 'r') as f:
long_description = f.read()
with open('masque/VERSION', 'r') as f:
version = f.read().strip()
setup(name='masque',
version=masque.version,
version=version,
description='Lithography mask library',
long_description=long_description,
long_description_content_type='text/markdown',
@ -15,6 +17,9 @@ setup(name='masque',
author_email='anewusername@gmail.com',
url='https://mpxd.net/code/jan/masque',
packages=find_packages(),
package_data={
'masque': ['VERSION']
},
install_requires=[
'numpy',
],

Loading…
Cancel
Save