Skip to content

Commit

Permalink
Merge pull request #4 from manpages/master
Browse files Browse the repository at this point in the history
Don´t use distutils. Fixes #3.
  • Loading branch information
richardkiss committed Sep 10, 2013
2 parents 1af8966 + c5691f7 commit 3d0fcd8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -3,3 +3,5 @@ __pycache__
*~
dist
build
files.txt
*egg-info
6 changes: 6 additions & 0 deletions Makefile
@@ -0,0 +1,6 @@
.PHONY: install uninstall

install:
./setup.py install --record files.txt
uninstall:
cat files.txt | xargs rm -rf
4 changes: 2 additions & 2 deletions setup.py
@@ -1,10 +1,10 @@
#!/usr/bin/env python

import distutils.core
from setuptools import setup

version = "0.23"

distutils.core.setup(
setup(
name="pycoin",
version=version,
packages = [
Expand Down

0 comments on commit 3d0fcd8

Please sign in to comment.