8000 Retool the setup.py infrastructure by mdboom · Pull Request #1454 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Retool the setup.py infrastructure #1454

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 24 commits into from
Feb 26, 2013
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
6aa7b29
First pass at making setup more sane.
mdboom Oct 8, 2012
4ae2fd2
Removing dateutils, pytz and six (external Python dependencies)
mdboom Oct 9, 2012
04a73b4
Fix a few bugs in the build.
mdboom Oct 9, 2012
bae0859
More fixes
mdboom Oct 9, 2012
9b408cd
setupegg.py is now redundant.
mdboom Nov 6, 2012
6f64971
Fix type in dates docs
mdboom Nov 6, 2012
088a267
Update INSTALL document to reflect new reality
mdboom Nov 6, 2012
7018842
Handle dateutil and pyparsing in the same manner as everything else.
mdboom Nov 6, 2012
49bd70a
Raise exception early if pyparsing and/or dateutil are not installed.
mdboom Nov 6, 2012
4d8c846
Fix pyparsing on python 3 check
mdboom Nov 6, 2012
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
First pass at making setup more sane.
  • Loading branch information
mdboom committed Feb 25, 2013
commit 6aa7b291cb9c587aaf6d13f74bf29b2d4d33823f
14 changes: 5 additions & 9 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
include CHANGELOG KNOWN_BUGS INSTALL
include CHANGELOG INSTALL
include INTERACTIVE TODO CONTRIBUTING.md
include Makefile make.osx MANIFEST.in MANIFEST
include Makefile MANIFEST.in MANIFEST
include matplotlibrc.template setup.cfg.template
include __init__.py setupext.py setup.py setupegg.py
include examples/data/*
include lib/mpl_toolkits
include lib/matplotlib/mpl-data/matplotlib.conf
include lib/matplotlib/mpl-data/matplotlib.conf.template
include setupext.py setup.py setupegg.py
include lib/matplotlib/mpl-data/lineprops.glade
include lib/matplotlib/mpl-data/matplotlibrc
include lib/matplotlib/mpl-data/images/*
include lib/matplotlib/mpl-data/fonts/ttf/*
include lib/matplotlib/mpl-data/fonts/pdfcorefonts/*
include lib/matplotlib/mpl-data/fonts/afm/*
recursive-include lib/matplotlib/mpl-data/sample_data/*
recursive-include license LICENSE*
recursive-include lib/matplotlib/mpl-data/sample_data/ *
recursive-include LICENSE *
recursive-include examples *
recursive-include doc *
recursive-include src *.cpp *.c *.h *.m
Expand Down
Loading
0