timeawarepc 1.2.1__tar.gz → 1.2.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {timeawarepc-1.2.1/timeawarepc.egg-info → timeawarepc-1.2.4}/PKG-INFO +2 -2
- {timeawarepc-1.2.1 → timeawarepc-1.2.4}/setup.cfg +5 -2
- {timeawarepc-1.2.1 → timeawarepc-1.2.4}/setup.py +2 -2
- {timeawarepc-1.2.1 → timeawarepc-1.2.4/timeawarepc.egg-info}/PKG-INFO +2 -2
- {timeawarepc-1.2.1 → timeawarepc-1.2.4}/LICENSE +0 -0
- {timeawarepc-1.2.1 → timeawarepc-1.2.4}/README.md +0 -0
- {timeawarepc-1.2.1 → timeawarepc-1.2.4}/pyproject.toml +0 -0
- {timeawarepc-1.2.1 → timeawarepc-1.2.4}/timeawarepc/__init__.py +0 -0
- {timeawarepc-1.2.1 → timeawarepc-1.2.4}/timeawarepc/find_cfc.py +0 -0
- {timeawarepc-1.2.1 → timeawarepc-1.2.4}/timeawarepc/gc.py +0 -0
- {timeawarepc-1.2.1 → timeawarepc-1.2.4}/timeawarepc/pcalg.py +0 -0
- {timeawarepc-1.2.1 → timeawarepc-1.2.4}/timeawarepc/pcalg_helpers.py +0 -0
- {timeawarepc-1.2.1 → timeawarepc-1.2.4}/timeawarepc/simulate_data.py +0 -0
- {timeawarepc-1.2.1 → timeawarepc-1.2.4}/timeawarepc/tpc.py +0 -0
- {timeawarepc-1.2.1 → timeawarepc-1.2.4}/timeawarepc/tpc_helpers.py +0 -0
- {timeawarepc-1.2.1 → timeawarepc-1.2.4}/timeawarepc/tutorial.py +0 -0
- {timeawarepc-1.2.1 → timeawarepc-1.2.4}/timeawarepc.egg-info/SOURCES.txt +0 -0
- {timeawarepc-1.2.1 → timeawarepc-1.2.4}/timeawarepc.egg-info/dependency_links.txt +0 -0
- {timeawarepc-1.2.1 → timeawarepc-1.2.4}/timeawarepc.egg-info/requires.txt +0 -0
- {timeawarepc-1.2.1 → timeawarepc-1.2.4}/timeawarepc.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: timeawarepc
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.4
|
|
4
4
|
Summary: Time-Aware PC Python Package
|
|
5
5
|
Home-page: https://github.com/biswasr/TimeAwarePC
|
|
6
6
|
Author: Rahul Biswas
|
|
@@ -10,7 +10,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
10
10
|
Classifier: License :: OSI Approved :: MIT License
|
|
11
11
|
Classifier: Operating System :: OS Independent
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
-
Requires-Python:
|
|
13
|
+
Requires-Python: >=3.7, <3.11
|
|
14
14
|
Description-Content-Type: text/markdown
|
|
15
15
|
License-File: LICENSE
|
|
16
16
|
Requires-Dist: numpy
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[metadata]
|
|
2
2
|
name = timeawarepc
|
|
3
|
-
version = 1.2.
|
|
3
|
+
version = 1.2.4
|
|
4
4
|
author = Rahul Biswas
|
|
5
5
|
author_email = rahul.biswas@ucsf.edu
|
|
6
6
|
description = Time-Aware PC Python Package
|
|
@@ -11,13 +11,16 @@ license_files = LICENSE
|
|
|
11
11
|
url = https://github.com/biswasr/TimeAwarePC
|
|
12
12
|
classifiers =
|
|
13
13
|
Programming Language :: Python :: 3
|
|
14
|
+
Programming Language :: Python :: 3.7
|
|
15
|
+
Programming Language :: Python :: 3.8
|
|
16
|
+
Programming Language :: Python :: 3.9
|
|
14
17
|
Programming Language :: Python :: 3.10
|
|
15
18
|
License :: OSI Approved :: MIT License
|
|
16
19
|
Operating System :: OS Independent
|
|
17
20
|
|
|
18
21
|
[options]
|
|
19
22
|
packages = find:
|
|
20
|
-
python_requires =
|
|
23
|
+
python_requires = >=3.7, <3.11
|
|
21
24
|
install_requires =
|
|
22
25
|
numpy
|
|
23
26
|
pandas
|
|
@@ -3,7 +3,7 @@ import setuptools
|
|
|
3
3
|
with open('README.md','r') as fh:
|
|
4
4
|
README = fh.read()
|
|
5
5
|
|
|
6
|
-
VERSION = "1.2.
|
|
6
|
+
VERSION = "1.2.4"
|
|
7
7
|
|
|
8
8
|
setuptools.setup(
|
|
9
9
|
name = 'timeawarepc',
|
|
@@ -23,7 +23,7 @@ setuptools.setup(
|
|
|
23
23
|
'networkx',
|
|
24
24
|
'scipy'
|
|
25
25
|
],
|
|
26
|
-
python_requires='
|
|
26
|
+
python_requires='>=3.7, <3.11',
|
|
27
27
|
classifiers=[
|
|
28
28
|
"Programming Language :: Python :: 3",
|
|
29
29
|
"License :: OSI Approved :: MIT License",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: timeawarepc
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.4
|
|
4
4
|
Summary: Time-Aware PC Python Package
|
|
5
5
|
Home-page: https://github.com/biswasr/TimeAwarePC
|
|
6
6
|
Author: Rahul Biswas
|
|
@@ -10,7 +10,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
10
10
|
Classifier: License :: OSI Approved :: MIT License
|
|
11
11
|
Classifier: Operating System :: OS Independent
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
-
Requires-Python:
|
|
13
|
+
Requires-Python: >=3.7, <3.11
|
|
14
14
|
Description-Content-Type: text/markdown
|
|
15
15
|
License-File: LICENSE
|
|
16
16
|
Requires-Dist: numpy
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|