-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
3 changed files
with
20 additions
and
0 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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include versioneer.py | ||
include awpa/_version.py | ||
recursive-include awpa Grammar.txt | ||
include LICENSE LICENSE.rst |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
==== | ||
awpa | ||
==== | ||
|
||
A Working Python AST[*]_ | ||
|
||
`lib2to3`_ is a pretty buggy, poorly-maintained library, so here's something better. | ||
|
||
Docs forthcoming. | ||
|
||
|
||
.. _lib2to3: https://docs.python.org/library/2to3 | ||
.. [*] Not actually very abstract, but it's a catchy acronym. |
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 |
---|---|---|
|
@@ -6,8 +6,14 @@ | |
import versioneer | ||
|
||
|
||
with open('README.rst', 'r') as infile: | ||
long_description = infile.read() | ||
|
||
|
||
setup( | ||
name='awpa', | ||
description='A Working Python AST', | ||
long_description=long_description, | ||
author='Aaron Gallagher', | ||
author_email='[email protected]', | ||
url='https://github.com/habnabit/awpa', | ||
|