mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-09 06:04:04 +08:00
BLD: Adds versioneer
versioneer let's us track the version using git tags. This prevents issues like the 0.8.2->0.8.3 push. This also puts the number of commits from the release and the commit you are on in the version.
This commit is contained in:
@@ -30,6 +30,8 @@ from setuptools import (
|
||||
setup,
|
||||
)
|
||||
|
||||
import versioneer
|
||||
|
||||
|
||||
class LazyCythonizingList(list):
|
||||
cythonized = False
|
||||
@@ -219,7 +221,8 @@ pre_setup()
|
||||
|
||||
setup(
|
||||
name='zipline',
|
||||
version='0.8.3',
|
||||
version=versioneer.get_version(),
|
||||
cmdclass=versioneer.get_cmdclass(),
|
||||
description='A backtester for financial algorithms.',
|
||||
author='Quantopian Inc.',
|
||||
author_email='opensource@quantopian.com',
|
||||
|
||||
Reference in New Issue
Block a user