-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modify the __init__py version number
- Loading branch information
1 parent
8ad685c
commit 249a44b
Showing
5 changed files
with
13 additions
and
10 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,2 +1,2 @@ | ||
|
||
__version__ = "1.9.6" | ||
__version__ = "1.9.9" |
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,2 +1,2 @@ | ||
|
||
__version__ = "1.9.6" | ||
__version__ = "1.9.9" |
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,4 @@ | ||
|
||
__version__ = "1.9.6" | ||
__version__ = "1.9.9" | ||
|
||
|
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,4 @@ | ||
|
||
__version__ = "1.9.6" | ||
__version__ = "1.9.9" | ||
|
||
|
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,14 +1,17 @@ | ||
import os | ||
from setuptools import setup, find_packages | ||
|
||
# Function to read requirements from requirements.txt | ||
def parse_requirements(filename): | ||
with open(filename, 'r') as f: | ||
return f.read().splitlines() | ||
def get_requires(): | ||
reqs = [] | ||
for line in open("CompactObject_TOV.egg-info/requires.txt", "r").readlines(): | ||
reqs.append(line) | ||
return reqs | ||
|
||
setup( | ||
name="CompactObject", | ||
version="1.9.8", | ||
name="CompactObject-TOV", | ||
version="1.9.9", | ||
packages=find_packages(), | ||
install_requires=parse_requirements('requirements.txt'), # Automatically adds requirements | ||
install_requires=get_requires(), # Automatically adds requirements | ||
# other setup parameters | ||
) |