-
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 branch information
1 parent
c4f1c01
commit e1a16e5
Showing
3 changed files
with
3 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
__title__ = 'pytca' | ||
__version__ = '1.0.2' | ||
__author__ = 'Jialue Chen' | ||
__license__ = 'BSD 2-Clause' |
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.1.0 | ||
version = 1.2.0 | ||
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,10 +1,9 @@ | ||
from setuptools import setup, Extension,find_packages | ||
from setuptools import setup,find_packages | ||
from setuptools.command.build_ext import build_ext | ||
|
||
|
||
setup( | ||
name='pytca', | ||
version='1.1.0', | ||
version='1.2.0', | ||
description='Python Library for Transaction Cost Analysis', | ||
author='Jialue Chen', | ||
author_email='[email protected]', | ||
|