Skip to content

Commit

Permalink
Update to using Makefile (#36)
Browse files Browse the repository at this point in the history
* Update

* Update
  • Loading branch information
eyurtsev committed Oct 7, 2021
1 parent 2ff6f59 commit 1fc4364
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 74 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
build:
python3 -m build

upload:
python3 -m twine upload dist/*

clean:
rm -rf dist
73 changes: 0 additions & 73 deletions fabfile.py

This file was deleted.

6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def get_fcs_files():

install_requires=[
"setuptools",
'six',
"six",
"numpy",
"pandas"
],
Expand Down

0 comments on commit 1fc4364

Please sign in to comment.