@@ -369,19 +369,19 @@ def show_files(file, print_=True):
369369 '.mailmap' ,
370370 # Travis
371371 '.travis.yml' ,
372- # This is the file you should edit if not enough ends up in the tarball
373- 'MANIFEST.in' ,
374- # Experimental Cythonization support. Not for production
375- 'Makefile' ,
372+ # Code of conduct
373+ 'CODE_OF_CONDUCT.md' ,
376374 # Nothing from bin/ should be shipped unless we intend to install it. Most
377375 # of this stuff is for development anyway. To run the tests from the
378376 # tarball, use setup.py test, or import sympy and run sympy.test() or
379377 # sympy.doctest().
380378 'bin/adapt_paths.py' ,
381379 'bin/ask_update.py' ,
380+ 'bin/authors_update.py' ,
382381 'bin/coverage_doctest.py' ,
383382 'bin/coverage_report.py' ,
384383 'bin/build_doc.sh' ,
384+ 'bin/deploy_doc.sh' ,
385385 'bin/diagnose_imports' ,
386386 'bin/doctest' ,
387387 'bin/generate_test_list.py' ,
@@ -396,8 +396,6 @@ def show_files(file, print_=True):
396396 'bin/test_import.py' ,
397397 'bin/test_isolated' ,
398398 'bin/test_travis.sh' ,
399- # This is also related to Cythonization
400- 'build.py' ,
401399 # The notebooks are not ready for shipping yet. They need to be cleaned
402400 # up, and preferrably doctested. See also
403401 # https://github.com/sympy/sympy/issues/6039.
@@ -416,6 +414,7 @@ def show_files(file, print_=True):
416414 'examples/notebooks/sho1d_example.ipynb' ,
417415 'examples/notebooks/spin.ipynb' ,
418416 'examples/notebooks/trace.ipynb' ,
417+ 'examples/notebooks/README.txt' ,
419418 # This stuff :)
420419 'release/.gitignore' ,
421420 'release/README.md' ,
@@ -431,7 +430,15 @@ def show_files(file, print_=True):
431430# Files that should be in the tarball should not be in git
432431
433432tarball_whitelist = {
434- "PKG-INFO" , # Generated by setup.py. Contains metadata for PyPI.
433+ # Generated by setup.py. Contains metadata for PyPI.
434+ "PKG-INFO" ,
435+ # Generated by setuptools. More metadata.
436+ 'setup.cfg' ,
437+ 'sympy.egg-info/PKG-INFO' ,
438+ 'sympy.egg-info/SOURCES.txt' ,
439+ 'sympy.egg-info/dependency_links.txt' ,
440+ 'sympy.egg-info/requires.txt' ,
441+ 'sympy.egg-info/top_level.txt' ,
435442 }
436443
437444@task
0 commit comments