summaryrefslogtreecommitdiffstats
path: root/MANIFEST.in
AgeCommit message (Collapse)Author
2023-07-02remove coala (outdated)Thomas Waldmann
last coala release (0.11.0) is now over 6y old. when using pip install coala, a ton of stuff gets installed (expected) and a part of that downgrades some stuff we use to outdated, incompatible versions. when trying to run coala with python 3.11, it just crashes because the last release was made for py35/py36 (as seen in their setup.py). a lot of PRs and tickets pile up at the coala project on github, but noone is maintaining it.
2020-12-03Change references of Travis to GitHub Actions (#5536)Samuel
s/travis/github actions/g, fixes #5528
2020-04-21MANIFEST.in: add syncfilerange.c, reformatThomas Waldmann
2019-08-24Initial work to build and run borg under windowsJürg Rast
- Created a batch file to build borg on windows - Adjusted setup.py to be runnable on windows and build the windows extension - Extracted the free space check to a function in the platform module - Created the minimal needed (dummy) functions for the windows platform module
2018-05-18include .coveragerc, needed by tox.iniThomas Waldmann
I noticed that archlinux has an identical coveragerc and wondered why. Then noticed that our tox.ini (which we bundle into the pypi package) needs .coveragerc, but we did not bundle it until now. (cherry picked from commit c79156caf50fa2606bda0563e03bf3a93b23229f)
2018-04-28Update setup.py to use a newer Cython/setuptools API for compiling .pyx -> ↵Nic Donaldson
.c (#3788) update build process to use newer Cython/setuptools APIs Cython.Distutils.build_ext has been deprecated, and the recommended replacement is Cython.Build.cythonize. setuptools.Extension will convert the file extension .pyx -> .c so there's no need to duplicate the functionality. This allows the removal of the special Sdist logic when cython is available. cythonize will compile .pyx -> .c, but the resulting Extension's files won't be included in sdist unless the Extension is in ext_modules. We don't want the platform extensions in ext_modules though because that will break compilation, so the platform .c files were added to the manifest. - removed some unnecessary distutils imports and moved some imports for better visibility - stop cythonize from running in some common use cases like 'clean'
2017-11-25clean up and simplify packagingThomas Waldmann
1.1.2 was released with a sdist that included quite some files that did not belong into the package (I tried nuitka at some time). This was because the old MANIFEST.in / setup.py included all the stuff in the package dir. Now, setuptools_scm is to automatically deal with the INCLUDES and MANIFEST.in only handles the EXCLUDES, so only committed files get into the sdist (minus some we do not want). Also, no .c .h .pyx files will be installed - they are not needed as they have been compiled into binary files.
2017-07-29python 3.5+ does not generate .pyo any moreThomas Waldmann
2017-06-18MANIFEST.in: exclude .coafile (coala)1.1.0b6Thomas Waldmann
2017-01-29Merge branch '1.0-maint' into merge-1.0-maintThomas Waldmann
# Conflicts: # MANIFEST.in # Vagrantfile # docs/changes.rst # docs/usage/mount.rst.inc # src/borg/archiver.py # src/borg/fuse.py # src/borg/repository.py
2017-01-21Manifest.in: simplify, exclude *.{so,dll,orig}, fixes #2066Thomas Waldmann
2017-01-15MANIFEST: exclude *.so1.1.0b3Thomas Waldmann
2017-01-15Merge branch '1.0-maint' into merge-1.0-maintThomas Waldmann
# Conflicts: # requirements.d/development.txt # tox.ini
2017-01-14remove .github from pypi package, fixes #2051Thomas Waldmann
2016-05-05fix packaging/git/coverage for src/ pathThomas Waldmann
2015-09-19MANIFEST.in: add some more excludesThomas Waldmann
2015-09-19remove remainders of versioneer, typo fix.Thomas Waldmann
2015-08-06fix CHANGES.rst filename in MANIFEST.inThomas Waldmann
2015-06-11add AUTHORS to MANIFEST.in, so it gets included in releases0.23.0Thomas Waldmann
2015-05-22fix all references to package nameThomas Waldmann
use relative imports if possible reorder imports (1. stdlib 2. dependencies 3. borg 4. borg.testsuite)
2015-05-14upgrade versioneer to 0.14, makes PEP440 compliant version numbers nowThomas Waldmann
2015-01-04Include missing pyx files in dist file.Jonas Borgström
Closes #168
2013-08-05Start using versioneer for version numbersJonas Borgström
2013-08-05Remove nature.css and make sure docs folder is included by sdistJonas Borgström
2013-07-08Update documentationJonas Borgström
2013-07-05Add MANIFEST.inJonas Borgström