-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
minor adjustments
- Loading branch information
1 parent
c2c39a5
commit 95ee0d4
Showing
4 changed files
with
10 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
__title__ = 'pytca' | ||
__author__ = 'Jialue Chen' | ||
__license__ = 'BSD 2-Clause' | ||
__license__ = 'BSD 2-Clause' | ||
__version__='1.2.2' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = pytca | ||
version = 1.2.1 | ||
version = 1.2.2 | ||
description = Advanced Python Library for Transaction Cost Analysis | ||
author = Jialue Chen | ||
author_email = [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
from setuptools import setup,find_packages | ||
from setuptools.command.build_ext import build_ext | ||
|
||
from pytca import __version__ as versionInfo | ||
setup( | ||
name='pytca', | ||
version='1.2.1', | ||
version=versionInfo, | ||
description='Python Library for Transaction Cost Analysis', | ||
author='Jialue Chen', | ||
author_email='[email protected]', | ||
|