Updated version to 10.0; split metadata into 2 files as per my new "standard"

This commit is contained in:
Rob McMullen 2019-03-07 12:04:17 -08:00
parent 5aa2560c7c
commit 282ec20bdd
4 changed files with 4 additions and 3 deletions

View File

@ -6,7 +6,7 @@ import json
import logging
log = logging.getLogger(__name__)
from ._metadata import __version__
from ._version import __version__
try:
import numpy as np

View File

@ -1,4 +1,3 @@
__version__ = "9.1"
__author__ = "Rob McMullen"
__author_email__ = "feedback@playermissile.com"
__url__ = "https://github.com/robmcmullen/atrcopy"

1
atrcopy/_version.py Normal file
View File

@ -0,0 +1 @@
__version__ = "10.0"

View File

@ -5,7 +5,8 @@ try:
except ImportError:
from distutils.core import setup
exec(open('atrcopy/_metadata.py').read())
exec(compile(open('atrcopy/_version.py').read(), 'atrcopy/_version.py', 'exec'))
exec(compile(open('atrcopy/_metadata.py').read(), 'atrcopy/_metadata.py', 'exec'))
with open("README.rst", "r") as fp:
long_description = fp.read()