Skip to content

Commit

Permalink
Add Makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
lebedov committed Nov 23, 2021
1 parent c5207cc commit 237b955
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LICENSE.rst
Expand Up @@ -2,7 +2,7 @@
License
=======
Copyright (c) 2015-2018 Lev E. Givon, Godefroid Chapelle, Bertrand Janin
Copyright (c) 2015-2021 Lev E. Givon, Godefroid Chapelle, Bertrand Janin
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
15 changes: 15 additions & 0 deletions Makefile
@@ -0,0 +1,15 @@
PYTHON := `which python`

.PHONY: package build install clean

package:
$(PYTHON) setup.py sdist --formats=gztar bdist_wheel

build:
$(PYTHON) setup.py build

install:
$(PYTHON) setup.py install

upload:
twine upload dist/*
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -7,7 +7,7 @@
from setuptools import setup

NAME = 'ripdb'
VERSION = '0.1.3'
VERSION = '0.1.3.1'
AUTHOR = 'Lev E. Givon'
AUTHOR_EMAIL = 'lev@columbia.edu'
URL = 'https://github.com/lebedov/ripdb/'
Expand Down

0 comments on commit 237b955

Please sign in to comment.