Skip to content

Commit

Permalink
Added Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
kuffmode committed Oct 31, 2021
1 parent 7d94cb5 commit 74f2328
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
/build/
/dist/
/msapy.egg-info/
/examples/.ipynb_checkpoints/
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
test:
python -m pytest tests

release:
rm dist/*
python setup.py sdist bdist_wheel
twine upload dist/*
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
test_packages = ["pytest~=6.2.5"]

setup(name="msapy",
version="0.0.1",
version="0.0.2.1",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
Expand All @@ -28,6 +28,6 @@
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering"],
python_requires='>=3.9',
python_requires='>=3.8',
install_requires=base_packages,
include_package_data=True)

0 comments on commit 74f2328

Please sign in to comment.