diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..2289eca --- /dev/null +++ b/AUTHORS @@ -0,0 +1,2 @@ +Juan Esteban Aristizabal-Zuluaga, mailto:jeaz.git@gmail.com, https://github.com/jearistiz +Nicole Rivera Parra, mailto:nicole.rivera@udea.edu.co, https://github.com/nicolerivera1 \ No newline at end of file diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..395c3df --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,20 @@ +include AUTHORS +include LICENSE +include MANIFEST.in +include README.md + +include pyproject.toml +include setup.cfg +include setup.py + +include requirements-dev.txt +include requirements.txt + +recursive-include src/dinjo/ *.py + +recursive-include tests/ *.py + +include example_data/infected_reference_col.csv +include examples/*.py + +global-exclude *.py[co] diff --git a/Pipfile.lock b/Pipfile.lock index 923ad8b..db8ce5c 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -484,7 +484,7 @@ "sha256:c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1", "sha256:ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b" ], - "markers": "python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "markers": "python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2'", "version": "==2.4.7" }, "pytest": { @@ -508,7 +508,7 @@ "sha256:73ebfe9dbf22e832286dafa60473e4cd239f8592f699aa5adaf10050e6e1823c", "sha256:75bb3f31ea686f1197762692a9ee6a7550b59fc6ca3a1f4b5d7e32fb98e2da2a" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'", "version": "==2.8.1" }, "pytz": { @@ -556,7 +556,7 @@ "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'", "version": "==1.16.0" }, "snowballstemmer": { diff --git a/pyproject.toml b/pyproject.toml index 07de284..b5a3c46 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,6 @@ [build-system] -requires = ["setuptools", "wheel"] +requires = [ + "setuptools>=42", + "wheel" +] build-backend = "setuptools.build_meta" \ No newline at end of file diff --git a/requirements-dev.txt b/requirements-dev.txt index 74af979..686807b 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -36,14 +36,14 @@ py==1.10.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3. pycodestyle==2.7.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3' pyflakes==2.3.1; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3' pygments==2.9.0; python_version >= '3.5' -pyparsing==2.4.7; python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3' +pyparsing==2.4.7; python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2' pytest-cov==2.12.0 pytest==6.2.4 -python-dateutil==2.8.1; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3' +python-dateutil==2.8.1; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2' pytz==2021.1 requests==2.25.1; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' scipy==1.6.3 -six==1.16.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3' +six==1.16.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2' snowballstemmer==2.1.0 sphinx-rtd-theme==0.5.2 sphinx==4.0.2 diff --git a/setup.cfg b/setup.cfg index 1d082c1..b2b9de4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -name = DINJO +name = dinjo version = attr:dinjo.VERSION author = Juan Esteban Aristizabal-Zuluaga author_email = jeaz.git@gmail.com diff --git a/src/dinjo/__init__.py b/src/dinjo/__init__.py index 8a5a9d3..1f6518e 100644 --- a/src/dinjo/__init__.py +++ b/src/dinjo/__init__.py @@ -1 +1 @@ -VERSION = '0.0.dev1' +VERSION = '0.1.0'