Skip to content

Commit

Permalink
Merge pull request #27 from fenfisdi/issue/26/first_release
Browse files Browse the repository at this point in the history
Issue/26/first release
  • Loading branch information
jearistiz authored May 23, 2021
2 parents df3f791 + ecdd54e commit 654781d
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 9 deletions.
2 changes: 2 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Juan Esteban Aristizabal-Zuluaga, mailto:[email protected], https://github.com/jearistiz
Nicole Rivera Parra, mailto:[email protected], https://github.com/nicolerivera1
20 changes: 20 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -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]
6 changes: 3 additions & 3 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[build-system]
requires = ["setuptools", "wheel"]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
6 changes: 3 additions & 3 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[metadata]
name = DINJO
name = dinjo
version = attr:dinjo.VERSION
author = Juan Esteban Aristizabal-Zuluaga
author_email = [email protected]
Expand Down
2 changes: 1 addition & 1 deletion src/dinjo/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '0.0.dev1'
VERSION = '0.1.0'

0 comments on commit 654781d

Please sign in to comment.