-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
_
committed
Apr 13, 2018
1 parent
1bb61bf
commit 477b2de
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ | |
from distutils.core import setup, Extension | ||
from distutils.command.build import build | ||
|
||
VERSION='0.3' | ||
|
||
class build_and_make_exec(build): | ||
def run(self): | ||
from distutils.ccompiler import new_compiler | ||
|
@@ -12,7 +14,7 @@ def run(self): | |
comp.link_executable(['pfa/pfa.o'], 'pfa/pfai') | ||
build.run(self) | ||
|
||
setup(name='pfa', packages=['pfa',], version='0.2', | ||
setup(name='pfa', packages=['pfa',], version=VERSION, | ||
|
||
author = "M Stoeckl", | ||
author_email = "[email protected]", | ||
|
@@ -21,7 +23,7 @@ def run(self): | |
|
||
description = "Very fast and consistent (if ugly) autoformatting for Python", | ||
url = "https://github.com/mstoeckl/python-fast-autoformat", | ||
download_url = "https://github.com/mstoeckl/python-fast-autoformat/archive/0.2.tar.gz", | ||
download_url = "https://github.com/mstoeckl/python-fast-autoformat/archive/"+VERSION+".tar.gz", | ||
|
||
long_description = open("README.md").read(), | ||
|
||
|