-
Notifications
You must be signed in to change notification settings - Fork 1
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
d6beab4
commit cb4cf7e
Showing
2 changed files
with
5 additions
and
4 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
factor_analyzer |
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,16 +1,15 @@ | ||
import setuptools | ||
# Packages | ||
base_packages = [ | ||
"factor_analyzer" | ||
] | ||
"factor-analyzer>=0.4.0"] | ||
|
||
# Load the long_description from README.md | ||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name="reliabiliPy", | ||
version="0.0.3b", | ||
version="0.0.34", | ||
author="Rafael Valero-Fernandez", | ||
author_email="[email protected]", | ||
description="Simple implementation in Python of the reliability: " | ||
|
@@ -25,4 +24,5 @@ | |
"Operating System :: OS Independent", | ||
], | ||
python_requires='>=3.6', | ||
install_requires=base_packages,) | ||
install_requires=base_packages | ||
) |